Makefile
changeset 10 d63cce6d1a09
parent 4 2f4e88604125
--- a/Makefile	Sun Apr 04 16:12:19 2021 -0700
+++ b/Makefile	Wed Oct 27 14:36:25 2021 -0700
@@ -5,7 +5,7 @@
 default: development
 
 development: ${FILES}
-	nim --debugInfo --assertions:on --linedir:on -d:ssl --define:debug --nimcache:${CACHE} c ${FILES}
+	nim --debugInfo --assertions:on --profiler:on --stackTrace:on --linedir:on -d:ssl --define:debug --nimcache:${CACHE} c ${FILES}
 	@mv src/stomp .
 
 autobuild:
@@ -16,7 +16,7 @@
 	nim --debugger:on --nimcache:${CACHE} c ${FILES}
 
 release: ${FILES}
-	nim -d:release --opt:speed --nimcache:${CACHE} c ${FILES}
+	nim -d:release --opt:speed --panics:on --nimcache:${CACHE} c ${FILES}
 	@mv src/stomp .
 
 docs: