diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-06-13 23:51:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-14 08:51:40 +0200 |
commit | e1e8af535ec195e5749dffa728add95770e5cbd7 (patch) | |
tree | 5ef4e35035e9b5647a47f252ebf78082dc71e5db /lib/std/compilesettings.nim | |
parent | 065243dc5988fbfcbed8236e19a588b98d63b199 (diff) | |
download | Nim-e1e8af535ec195e5749dffa728add95770e5cbd7.tar.gz |
merge BuildMode into SuccessX, remove code duplication w drnim, add useful info to successx, add gc to compilesettings (#18252)
* merge BuildMode into SuccessX, add more info * refactor duplicated with drnim * fixup * address comment
Diffstat (limited to 'lib/std/compilesettings.nim')
-rw-r--r-- | lib/std/compilesettings.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/std/compilesettings.nim b/lib/std/compilesettings.nim index 273cfdb57..e1ffc954a 100644 --- a/lib/std/compilesettings.nim +++ b/lib/std/compilesettings.nim @@ -32,6 +32,7 @@ type backend ## the backend (eg: c|cpp|objc|js); both `nim doc --backend:js` ## and `nim js` would imply backend=js libPath ## the absolute path to the stdlib library, i.e. nim's `--lib`, since 1.5.1 + gc ## gc selected MultipleValueSetting* {.pure.} = enum ## \ ## settings resulting in a seq of string values |