--- a/Makefile Sun Feb 18 18:16:37 2018 -0800
+++ b/Makefile Sun Feb 18 22:18:44 2018 -0800
@@ -4,17 +4,17 @@
default: development
debug: ${FILES}
- nim --assertions:on --threads:on --nimcache:.cache c ${FILES}
+ nim --assertions:on --nimcache:.cache c ${FILES}
development: ${FILES}
# can use gdb with this...
- nim --debugInfo --threads:on --linedir:on -d:testing -d:nimTypeNames --nimcache:.cache c ${FILES}
+ nim --debugInfo --linedir:on -d:testing -d:nimTypeNames --nimcache:.cache c ${FILES}
debugger: ${FILES}
- nim --debugger:on --threads:on --nimcache:.cache c ${FILES}
+ nim --debugger:on --nimcache:.cache c ${FILES}
release: ${FILES}
- nim -d:release --opt:speed --parallelBuild:0 --threads:on --nimcache:.cache c ${FILES}
+ nim -d:release --opt:speed --parallelBuild:0 --nimcache:.cache c ${FILES}
docs:
nim doc ${FILES}