diff options
Diffstat (limited to 'compiler/options.nim')
-rwxr-xr-x | compiler/options.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/options.nim b/compiler/options.nim index 9d7b41180..5238e839f 100755 --- a/compiler/options.nim +++ b/compiler/options.nim @@ -53,7 +53,8 @@ type # please make sure we have under 32 options optDef, # ideTools: 'def' optThreadAnalysis, # thread analysis pass optTaintMode, # taint mode turned on - optTlsEmulation # thread var emulation turned on + optTlsEmulation, # thread var emulation turned on + optGenIndex # generate index file for documentation TGlobalOptions* = set[TGlobalOption] TCommands* = enum # Nimrod's commands @@ -84,7 +85,6 @@ var gExitcode*: int8 searchPaths*: TLinkedList outFile*: string = "" - gIndexFile*: string = "" gCmd*: TCommands = cmdNone # the command gVerbosity*: int # how verbose the compiler is gNumberOfProcessors*: int # number of processors |