2019-02-17 16:05:36 +01:00
|
|
|
@if release:
|
|
|
|
nimcache = "nimcache/release/$projectName"
|
|
|
|
@else:
|
|
|
|
nimcache = "nimcache/debug/$projectName"
|
|
|
|
@end
|
|
|
|
|
2019-02-17 17:42:04 +01:00
|
|
|
@if windows:
|
2019-04-17 17:10:46 +02:00
|
|
|
# disable timestamps in Windows PE headers - https://wiki.debian.org/ReproducibleBuilds/TimestampsInPEBinaries
|
2019-04-17 18:15:56 +02:00
|
|
|
--passL:"-Wl,--no-insert-timestamp"
|
2019-04-17 17:10:46 +02:00
|
|
|
# increase stack size
|
|
|
|
--passL:"-Wl,--stack,8388608"
|
2019-04-25 00:26:08 +02:00
|
|
|
# https://github.com/nim-lang/Nim/issues/4057
|
|
|
|
--tlsEmulation:off
|
2019-02-17 17:42:04 +01:00
|
|
|
@end
|
|
|
|
|
2019-04-17 03:56:28 +02:00
|
|
|
--threads:on
|
2019-05-28 12:48:53 +02:00
|
|
|
--excessiveStackTrace:on
|
2019-07-10 01:58:18 +02:00
|
|
|
-d:metrics # enable metric collection
|
2019-04-17 03:56:28 +02:00
|
|
|
|