aboutsummaryrefslogtreecommitdiff
path: root/config.nims
blob: 7e7a6e1cb97830156f1f6015cb04de437ba5f6f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Workaround for C++ scanner.cc causing link error with other C obj files
when defined(MacOSX):
  switch("clang.linkerexe", "g++")
else:
  switch("gcc.linkerexe", "g++")

# Workaround for NilAccessError crash on Windows #98
when defined(Windows):
  switch("gc", "markAndSweep")

# Retain stackTrace for clear errors
switch("stackTrace", "on")

# Path to compiler
switch("path", "$nim")

# Case objects
when not defined(danger):
  switch("define", "nimOldCaseObjects")