Skip to content
Snippets Groups Projects
Commit 55a36731 authored by ram's avatar ram
Browse files

Changed the debug-info level for internal functions to be .5, which now

suppresses arg documentation and function type information.
parent 92fd46ec
No related branches found
No related tags found
No related merge requests found
......@@ -13,13 +13,14 @@
(with-compiler-log-file
("target:compile-lisp.log"
:optimize '(optimize (speed 2) (space 2) (inhibit-warnings 2)
(debug-info #-small 2 #+small 1)
(debug-info #-small 2 #+small .5)
(safety #-small 1 #+small 0))
:optimize-interface '(optimize-interface (safety #-small 2 #+small 1)
(debug-info 1))
(debug-info .5))
:context-declarations
'(((:or :external (:and (:match "%") (:match "SET")))
(declare (optimize-interface (safety 2))))
(declare (optimize-interface (safety 2) (debug-info 1))
(optimize (debug-info 1))))
((:or (:and :external :macro)
(:match "$PARSE-"))
(declare (optimize (safety 2))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment