Skip to content
Snippets Groups Projects
Commit 1e7e6668 authored by ram's avatar ram
Browse files

Changed small debug-info to .5 to suppress debug args and types.

parent 6c8db206
No related branches found
No related tags found
No related merge requests found
...@@ -21,17 +21,17 @@ ...@@ -21,17 +21,17 @@
:optimize :optimize
'(optimize (speed 2) (space 2) (inhibit-warnings 2) '(optimize (speed 2) (space 2) (inhibit-warnings 2)
(safety #+small 0 #-small 1) (safety #+small 0 #-small 1)
(debug-info #+small 1 #-small 2)) (debug-info #+small .5 #-small 2))
:optimize-interface :optimize-interface
'(optimize-interface (safety #+small 1 #-small 2) '(optimize-interface (safety #+small 1 #-small 2)
(debug-info 1)) (debug-info .5))
:context-declarations :context-declarations
'(#+small '(#+small
((:or :macro ((:or :macro
(:match "$SOURCE-TRANSFORM-" "$IR1-CONVERT-" (:match "$SOURCE-TRANSFORM-" "$IR1-CONVERT-"
"$PRIMITIVE-TRANSLATE-" "$PARSE-")) "$PRIMITIVE-TRANSLATE-" "$PARSE-"))
(declare (optimize (safety 1)))) (declare (optimize (safety 1))))
(:external (declare (optimize-interface (safety 2)))))) (:external (declare (optimize-interface (safety 2) (debug-info 1))))))
(comf "target:compiler/macros" :load *load-stuff*) (comf "target:compiler/macros" :load *load-stuff*)
(comf "target:compiler/generic/vm-macs" :load *load-stuff* :proceed t) (comf "target:compiler/generic/vm-macs" :load *load-stuff* :proceed t)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment