commands.nim 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155
  1. #
  2. #
  3. # The Nim Compiler
  4. # (c) Copyright 2015 Andreas Rumpf
  5. #
  6. # See the file "copying.txt", included in this
  7. # distribution, for details about the copyright.
  8. #
  9. # This module handles the parsing of command line arguments.
  10. # We do this here before the 'import' statement so 'defined' does not get
  11. # confused with 'TGCMode.gcMarkAndSweep' etc.
  12. template bootSwitch(name, expr, userString) =
  13. # Helper to build boot constants, for debugging you can 'echo' the else part.
  14. const name = if expr: " " & userString else: ""
  15. bootSwitch(usedRelease, defined(release), "-d:release")
  16. bootSwitch(usedDanger, defined(danger), "-d:danger")
  17. # `useLinenoise` deprecated in favor of `nimUseLinenoise`, kept for backward compatibility
  18. bootSwitch(useLinenoise, defined(nimUseLinenoise) or defined(useLinenoise), "-d:nimUseLinenoise")
  19. bootSwitch(usedBoehm, defined(boehmgc), "--gc:boehm")
  20. bootSwitch(usedMarkAndSweep, defined(gcmarkandsweep), "--gc:markAndSweep")
  21. bootSwitch(usedGoGC, defined(gogc), "--gc:go")
  22. bootSwitch(usedNoGC, defined(nogc), "--gc:none")
  23. import std/[setutils, os, strutils, parseutils, parseopt, sequtils, strtabs]
  24. import
  25. msgs, options, nversion, condsyms, extccomp, platform,
  26. wordrecg, nimblecmd, lineinfos, pathutils, pathnorm
  27. from ast import setUseIc, eqTypeFlags, tfGcSafe, tfNoSideEffect
  28. when defined(nimPreviewSlimSystem):
  29. import std/assertions
  30. # but some have deps to imported modules. Yay.
  31. bootSwitch(usedTinyC, hasTinyCBackend, "-d:tinyc")
  32. bootSwitch(usedFFI, hasFFI, "-d:nimHasLibFFI")
  33. type
  34. TCmdLinePass* = enum
  35. passCmd1, # first pass over the command line
  36. passCmd2, # second pass over the command line
  37. passPP # preprocessor called processCommand()
  38. const
  39. HelpMessage = "Nim Compiler Version $1 [$2: $3]\n" &
  40. "Compiled at $4\n" &
  41. "Copyright (c) 2006-" & copyrightYear & " by Andreas Rumpf\n"
  42. proc genFeatureDesc[T: enum](t: typedesc[T]): string {.compileTime.} =
  43. result = ""
  44. for f in T:
  45. if result.len > 0: result.add "|"
  46. result.add $f
  47. const
  48. Usage = slurp"../doc/basicopt.txt".replace(" //", " ")
  49. AdvancedUsage = slurp"../doc/advopt.txt".replace(" //", " ") % [genFeatureDesc(Feature), genFeatureDesc(LegacyFeature)]
  50. proc getCommandLineDesc(conf: ConfigRef): string =
  51. result = (HelpMessage % [VersionAsString, platform.OS[conf.target.hostOS].name,
  52. CPU[conf.target.hostCPU].name, CompileDate]) &
  53. Usage
  54. proc helpOnError(conf: ConfigRef; pass: TCmdLinePass) =
  55. if pass == passCmd1:
  56. msgWriteln(conf, getCommandLineDesc(conf), {msgStdout})
  57. msgQuit(0)
  58. proc writeAdvancedUsage(conf: ConfigRef; pass: TCmdLinePass) =
  59. if pass == passCmd1:
  60. msgWriteln(conf, (HelpMessage % [VersionAsString,
  61. platform.OS[conf.target.hostOS].name,
  62. CPU[conf.target.hostCPU].name, CompileDate]) &
  63. AdvancedUsage,
  64. {msgStdout})
  65. msgQuit(0)
  66. proc writeFullhelp(conf: ConfigRef; pass: TCmdLinePass) =
  67. if pass == passCmd1:
  68. msgWriteln(conf, `%`(HelpMessage, [VersionAsString,
  69. platform.OS[conf.target.hostOS].name,
  70. CPU[conf.target.hostCPU].name, CompileDate]) &
  71. Usage & AdvancedUsage,
  72. {msgStdout})
  73. msgQuit(0)
  74. proc writeVersionInfo(conf: ConfigRef; pass: TCmdLinePass) =
  75. if pass == passCmd1:
  76. msgWriteln(conf, `%`(HelpMessage, [VersionAsString,
  77. platform.OS[conf.target.hostOS].name,
  78. CPU[conf.target.hostCPU].name, CompileDate]),
  79. {msgStdout})
  80. const gitHash {.strdefine.} = gorge("git log -n 1 --format=%H").strip
  81. # xxx move this logic to std/private/gitutils
  82. when gitHash.len == 40:
  83. msgWriteln(conf, "git hash: " & gitHash, {msgStdout})
  84. msgWriteln(conf, "active boot switches:" & usedRelease & usedDanger &
  85. usedTinyC & useLinenoise &
  86. usedFFI & usedBoehm & usedMarkAndSweep & usedGoGC & usedNoGC,
  87. {msgStdout})
  88. msgQuit(0)
  89. proc writeCommandLineUsage*(conf: ConfigRef) =
  90. msgWriteln(conf, getCommandLineDesc(conf), {msgStdout})
  91. proc addPrefix(switch: string): string =
  92. if switch.len <= 1: result = "-" & switch
  93. else: result = "--" & switch
  94. const
  95. errInvalidCmdLineOption = "invalid command line option: '$1'"
  96. errOnOrOffExpectedButXFound = "'on' or 'off' expected, but '$1' found"
  97. errOnOffOrListExpectedButXFound = "'on', 'off' or 'list' expected, but '$1' found"
  98. errOffHintsError = "'off', 'hint', 'error' or 'usages' expected, but '$1' found"
  99. proc invalidCmdLineOption(conf: ConfigRef; pass: TCmdLinePass, switch: string, info: TLineInfo) =
  100. if switch == " ": localError(conf, info, errInvalidCmdLineOption % "-")
  101. else: localError(conf, info, errInvalidCmdLineOption % addPrefix(switch))
  102. proc splitSwitch(conf: ConfigRef; switch: string, cmd, arg: var string, pass: TCmdLinePass,
  103. info: TLineInfo) =
  104. cmd = ""
  105. var i = 0
  106. if i < switch.len and switch[i] == '-': inc(i)
  107. if i < switch.len and switch[i] == '-': inc(i)
  108. while i < switch.len:
  109. case switch[i]
  110. of 'a'..'z', 'A'..'Z', '0'..'9', '_', '.': cmd.add(switch[i])
  111. else: break
  112. inc(i)
  113. if i >= switch.len: arg = ""
  114. # cmd:arg => (cmd,arg)
  115. elif switch[i] in {':', '='}: arg = substr(switch, i + 1)
  116. # cmd[sub]:rest => (cmd,[sub]:rest)
  117. elif switch[i] == '[': arg = substr(switch, i)
  118. else: invalidCmdLineOption(conf, pass, switch, info)
  119. template switchOn(arg: string): bool =
  120. # xxx use `switchOn` wherever appropriate
  121. case arg.normalize
  122. of "", "on": true
  123. of "off": false
  124. else:
  125. localError(conf, info, errOnOrOffExpectedButXFound % arg)
  126. false
  127. proc processOnOffSwitch(conf: ConfigRef; op: TOptions, arg: string, pass: TCmdLinePass,
  128. info: TLineInfo) =
  129. case arg.normalize
  130. of "", "on": conf.options.incl op
  131. of "off": conf.options.excl op
  132. else: localError(conf, info, errOnOrOffExpectedButXFound % arg)
  133. proc processOnOffSwitchOrList(conf: ConfigRef; op: TOptions, arg: string, pass: TCmdLinePass,
  134. info: TLineInfo): bool =
  135. result = false
  136. case arg.normalize
  137. of "on": conf.options.incl op
  138. of "off": conf.options.excl op
  139. of "list": result = true
  140. else: localError(conf, info, errOnOffOrListExpectedButXFound % arg)
  141. proc processOnOffSwitchG(conf: ConfigRef; op: TGlobalOptions, arg: string, pass: TCmdLinePass,
  142. info: TLineInfo) =
  143. case arg.normalize
  144. of "", "on": conf.globalOptions.incl op
  145. of "off": conf.globalOptions.excl op
  146. else: localError(conf, info, errOnOrOffExpectedButXFound % arg)
  147. proc expectArg(conf: ConfigRef; switch, arg: string, pass: TCmdLinePass, info: TLineInfo) =
  148. if arg == "":
  149. localError(conf, info, "argument for command line option expected: '$1'" % addPrefix(switch))
  150. proc expectNoArg(conf: ConfigRef; switch, arg: string, pass: TCmdLinePass, info: TLineInfo) =
  151. if arg != "":
  152. localError(conf, info, "invalid argument for command line option: '$1'" % addPrefix(switch))
  153. proc processSpecificNote*(arg: string, state: TSpecialWord, pass: TCmdLinePass,
  154. info: TLineInfo; orig: string; conf: ConfigRef) =
  155. var id = "" # arg = key or [key] or key:val or [key]:val; with val=on|off
  156. var i = 0
  157. var notes: set[TMsgKind]
  158. var isBracket = false
  159. if i < arg.len and arg[i] == '[':
  160. isBracket = true
  161. inc(i)
  162. while i < arg.len and (arg[i] notin {':', '=', ']'}):
  163. id.add(arg[i])
  164. inc(i)
  165. if isBracket:
  166. if i < arg.len and arg[i] == ']': inc(i)
  167. else: invalidCmdLineOption(conf, pass, orig, info)
  168. if i == arg.len: discard
  169. elif i < arg.len and (arg[i] in {':', '='}): inc(i)
  170. else: invalidCmdLineOption(conf, pass, orig, info)
  171. let isSomeHint = state in {wHint, wHintAsError}
  172. template findNote(noteMin, noteMax, name) =
  173. # unfortunately, hintUser and warningUser clash, otherwise implementation would simplify a bit
  174. let x = findStr(noteMin, noteMax, id, errUnknown)
  175. if x != errUnknown: notes = {TNoteKind(x)}
  176. else:
  177. if isSomeHint:
  178. message(conf, info, hintUnknownHint, id)
  179. else:
  180. localError(conf, info, "unknown $#: $#" % [name, id])
  181. case id.normalize
  182. of "all": # other note groups would be easy to support via additional cases
  183. notes = if isSomeHint: {hintMin..hintMax} else: {warnMin..warnMax}
  184. elif isSomeHint: findNote(hintMin, hintMax, "hint")
  185. else: findNote(warnMin, warnMax, "warning")
  186. var val = substr(arg, i).normalize
  187. if val == "": val = "on"
  188. if val notin ["on", "off"]:
  189. # xxx in future work we should also allow users to have control over `foreignPackageNotes`
  190. # so that they can enable `hints|warnings|warningAsErrors` for all the code they depend on.
  191. localError(conf, info, errOnOrOffExpectedButXFound % arg)
  192. else:
  193. let isOn = val == "on"
  194. if isOn and id.normalize == "all":
  195. localError(conf, info, "only 'all:off' is supported")
  196. for n in notes:
  197. if n notin conf.cmdlineNotes or pass == passCmd1:
  198. if pass == passCmd1: incl(conf.cmdlineNotes, n)
  199. incl(conf.modifiedyNotes, n)
  200. if state in {wWarningAsError, wHintAsError}:
  201. conf.warningAsErrors[n] = isOn # xxx rename warningAsErrors to noteAsErrors
  202. else:
  203. conf.notes[n] = isOn
  204. conf.mainPackageNotes[n] = isOn
  205. if not isOn: excl(conf.foreignPackageNotes, n)
  206. proc processCompile(conf: ConfigRef; filename: string) =
  207. var found = findFile(conf, filename)
  208. if found.isEmpty: found = AbsoluteFile filename
  209. extccomp.addExternalFileToCompile(conf, found)
  210. const
  211. errNoneBoehmRefcExpectedButXFound = "'arc', 'orc', 'atomicArc', 'markAndSweep', 'boehm', 'go', 'none', 'regions', or 'refc' expected, but '$1' found"
  212. errNoneSpeedOrSizeExpectedButXFound = "'none', 'speed' or 'size' expected, but '$1' found"
  213. errGuiConsoleOrLibExpectedButXFound = "'gui', 'console', 'lib' or 'staticlib' expected, but '$1' found"
  214. errInvalidExceptionSystem = "'goto', 'setjmp', 'cpp' or 'quirky' expected, but '$1' found"
  215. template warningOptionNoop(switch: string) =
  216. warningDeprecated(conf, info, "'$#' is deprecated, now a noop" % switch)
  217. template deprecatedAlias(oldName, newName: string) =
  218. warningDeprecated(conf, info, "'$#' is a deprecated alias for '$#'" % [oldName, newName])
  219. proc testCompileOptionArg*(conf: ConfigRef; switch, arg: string, info: TLineInfo): bool =
  220. case switch.normalize
  221. of "gc", "mm":
  222. case arg.normalize
  223. of "boehm": result = conf.selectedGC == gcBoehm
  224. of "refc": result = conf.selectedGC == gcRefc
  225. of "markandsweep": result = conf.selectedGC == gcMarkAndSweep
  226. of "destructors", "arc": result = conf.selectedGC == gcArc
  227. of "orc": result = conf.selectedGC == gcOrc
  228. of "hooks": result = conf.selectedGC == gcHooks
  229. of "go": result = conf.selectedGC == gcGo
  230. of "none": result = conf.selectedGC == gcNone
  231. of "stack", "regions": result = conf.selectedGC == gcRegions
  232. of "atomicarc": result = conf.selectedGC == gcAtomicArc
  233. else: localError(conf, info, errNoneBoehmRefcExpectedButXFound % arg)
  234. of "opt":
  235. case arg.normalize
  236. of "speed": result = contains(conf.options, optOptimizeSpeed)
  237. of "size": result = contains(conf.options, optOptimizeSize)
  238. of "none": result = conf.options * {optOptimizeSpeed, optOptimizeSize} == {}
  239. else: localError(conf, info, errNoneSpeedOrSizeExpectedButXFound % arg)
  240. of "verbosity": result = $conf.verbosity == arg
  241. of "app":
  242. case arg.normalize
  243. of "gui": result = contains(conf.globalOptions, optGenGuiApp)
  244. of "console": result = not contains(conf.globalOptions, optGenGuiApp)
  245. of "lib": result = contains(conf.globalOptions, optGenDynLib) and
  246. not contains(conf.globalOptions, optGenGuiApp)
  247. of "staticlib": result = contains(conf.globalOptions, optGenStaticLib) and
  248. not contains(conf.globalOptions, optGenGuiApp)
  249. else: localError(conf, info, errGuiConsoleOrLibExpectedButXFound % arg)
  250. of "dynliboverride":
  251. result = isDynlibOverride(conf, arg)
  252. of "exceptions":
  253. case arg.normalize
  254. of "cpp": result = conf.exc == excCpp
  255. of "setjmp": result = conf.exc == excSetjmp
  256. of "quirky": result = conf.exc == excQuirky
  257. of "goto": result = conf.exc == excGoto
  258. else: localError(conf, info, errInvalidExceptionSystem % arg)
  259. else: invalidCmdLineOption(conf, passCmd1, switch, info)
  260. proc testCompileOption*(conf: ConfigRef; switch: string, info: TLineInfo): bool =
  261. case switch.normalize
  262. of "debuginfo": result = contains(conf.globalOptions, optCDebug)
  263. of "compileonly", "c": result = contains(conf.globalOptions, optCompileOnly)
  264. of "nolinking": result = contains(conf.globalOptions, optNoLinking)
  265. of "nomain": result = contains(conf.globalOptions, optNoMain)
  266. of "forcebuild", "f": result = contains(conf.globalOptions, optForceFullMake)
  267. of "warnings", "w": result = contains(conf.options, optWarns)
  268. of "hints": result = contains(conf.options, optHints)
  269. of "threadanalysis": result = contains(conf.globalOptions, optThreadAnalysis)
  270. of "stacktrace": result = contains(conf.options, optStackTrace)
  271. of "stacktracemsgs": result = contains(conf.options, optStackTraceMsgs)
  272. of "linetrace": result = contains(conf.options, optLineTrace)
  273. of "debugger": result = contains(conf.globalOptions, optCDebug)
  274. of "profiler": result = contains(conf.options, optProfiler)
  275. of "memtracker": result = contains(conf.options, optMemTracker)
  276. of "checks", "x": result = conf.options * ChecksOptions == ChecksOptions
  277. of "floatchecks":
  278. result = conf.options * {optNaNCheck, optInfCheck} == {optNaNCheck, optInfCheck}
  279. of "infchecks": result = contains(conf.options, optInfCheck)
  280. of "nanchecks": result = contains(conf.options, optNaNCheck)
  281. of "objchecks": result = contains(conf.options, optObjCheck)
  282. of "fieldchecks": result = contains(conf.options, optFieldCheck)
  283. of "rangechecks": result = contains(conf.options, optRangeCheck)
  284. of "boundchecks": result = contains(conf.options, optBoundsCheck)
  285. of "refchecks":
  286. warningDeprecated(conf, info, "refchecks is deprecated!")
  287. result = contains(conf.options, optRefCheck)
  288. of "overflowchecks": result = contains(conf.options, optOverflowCheck)
  289. of "staticboundchecks": result = contains(conf.options, optStaticBoundsCheck)
  290. of "stylechecks": result = contains(conf.options, optStyleCheck)
  291. of "linedir": result = contains(conf.options, optLineDir)
  292. of "assertions", "a": result = contains(conf.options, optAssert)
  293. of "run", "r": result = contains(conf.globalOptions, optRun)
  294. of "symbolfiles": result = conf.symbolFiles != disabledSf
  295. of "genscript": result = contains(conf.globalOptions, optGenScript)
  296. of "gencdeps": result = contains(conf.globalOptions, optGenCDeps)
  297. of "threads": result = contains(conf.globalOptions, optThreads)
  298. of "tlsemulation": result = contains(conf.globalOptions, optTlsEmulation)
  299. of "implicitstatic": result = contains(conf.options, optImplicitStatic)
  300. of "patterns", "trmacros":
  301. if switch.normalize == "patterns": deprecatedAlias(switch, "trmacros")
  302. result = contains(conf.options, optTrMacros)
  303. of "excessivestacktrace": result = contains(conf.globalOptions, optExcessiveStackTrace)
  304. of "nilseqs", "nilchecks", "taintmode": warningOptionNoop(switch)
  305. of "panics": result = contains(conf.globalOptions, optPanics)
  306. of "jsbigint64": result = contains(conf.globalOptions, optJsBigInt64)
  307. else: invalidCmdLineOption(conf, passCmd1, switch, info)
  308. proc processPath(conf: ConfigRef; path: string, info: TLineInfo,
  309. notRelativeToProj = false): AbsoluteDir =
  310. let p = if os.isAbsolute(path) or '$' in path:
  311. path
  312. elif notRelativeToProj:
  313. getCurrentDir() / path
  314. else:
  315. conf.projectPath.string / path
  316. try:
  317. result = AbsoluteDir pathSubs(conf, p, toFullPath(conf, info).splitFile().dir)
  318. except ValueError:
  319. localError(conf, info, "invalid path: " & p)
  320. result = AbsoluteDir p
  321. proc processCfgPath(conf: ConfigRef; path: string, info: TLineInfo): AbsoluteDir =
  322. let path = if path.len > 0 and path[0] == '"': strutils.unescape(path)
  323. else: path
  324. let basedir = toFullPath(conf, info).splitFile().dir
  325. let p = if os.isAbsolute(path) or '$' in path:
  326. path
  327. else:
  328. basedir / path
  329. try:
  330. result = AbsoluteDir pathSubs(conf, p, basedir)
  331. except ValueError:
  332. localError(conf, info, "invalid path: " & p)
  333. result = AbsoluteDir p
  334. const
  335. errInvalidNumber = "$1 is not a valid number"
  336. proc makeAbsolute(s: string): AbsoluteFile =
  337. if isAbsolute(s):
  338. AbsoluteFile pathnorm.normalizePath(s)
  339. else:
  340. AbsoluteFile pathnorm.normalizePath(os.getCurrentDir() / s)
  341. proc setTrackingInfo(conf: ConfigRef; dirty, file, line, column: string,
  342. info: TLineInfo) =
  343. ## set tracking info, common code for track, trackDirty, & ideTrack
  344. var ln, col: int
  345. if parseUtils.parseInt(line, ln) <= 0:
  346. localError(conf, info, errInvalidNumber % line)
  347. if parseUtils.parseInt(column, col) <= 0:
  348. localError(conf, info, errInvalidNumber % column)
  349. let a = makeAbsolute(file)
  350. if dirty == "":
  351. conf.m.trackPos = newLineInfo(conf, a, ln, col)
  352. else:
  353. let dirtyOriginalIdx = fileInfoIdx(conf, a)
  354. if dirtyOriginalIdx.int32 >= 0:
  355. msgs.setDirtyFile(conf, dirtyOriginalIdx, makeAbsolute(dirty))
  356. conf.m.trackPos = newLineInfo(dirtyOriginalIdx, ln, col)
  357. proc trackDirty(conf: ConfigRef; arg: string, info: TLineInfo) =
  358. var a = arg.split(',')
  359. if a.len != 4: localError(conf, info,
  360. "DIRTY_BUFFER,ORIGINAL_FILE,LINE,COLUMN expected")
  361. setTrackingInfo(conf, a[0], a[1], a[2], a[3], info)
  362. proc track(conf: ConfigRef; arg: string, info: TLineInfo) =
  363. var a = arg.split(',')
  364. if a.len != 3: localError(conf, info, "FILE,LINE,COLUMN expected")
  365. setTrackingInfo(conf, "", a[0], a[1], a[2], info)
  366. proc trackIde(conf: ConfigRef; cmd: IdeCmd, arg: string, info: TLineInfo) =
  367. ## set the tracking info related to an ide cmd, supports optional dirty file
  368. var a = arg.split(',')
  369. case a.len
  370. of 4:
  371. setTrackingInfo(conf, a[0], a[1], a[2], a[3], info)
  372. of 3:
  373. setTrackingInfo(conf, "", a[0], a[1], a[2], info)
  374. else:
  375. localError(conf, info, "[DIRTY_BUFFER,]ORIGINAL_FILE,LINE,COLUMN expected")
  376. conf.ideCmd = cmd
  377. proc dynlibOverride(conf: ConfigRef; switch, arg: string, pass: TCmdLinePass, info: TLineInfo) =
  378. if pass in {passCmd2, passPP}:
  379. expectArg(conf, switch, arg, pass, info)
  380. options.inclDynlibOverride(conf, arg)
  381. template handleStdinOrCmdInput =
  382. conf.projectFull = conf.projectName.AbsoluteFile
  383. conf.projectPath = AbsoluteDir getCurrentDir()
  384. if conf.outDir.isEmpty:
  385. conf.outDir = getNimcacheDir(conf)
  386. proc handleStdinInput*(conf: ConfigRef) =
  387. conf.projectName = "stdinfile"
  388. conf.projectIsStdin = true
  389. handleStdinOrCmdInput()
  390. proc handleCmdInput*(conf: ConfigRef) =
  391. conf.projectName = "cmdfile"
  392. handleStdinOrCmdInput()
  393. proc parseCommand*(command: string): Command =
  394. case command.normalize
  395. of "c", "cc", "compile", "compiletoc": cmdCompileToC
  396. of "cpp", "compiletocpp": cmdCompileToCpp
  397. of "objc", "compiletooc": cmdCompileToOC
  398. of "js", "compiletojs": cmdCompileToJS
  399. of "r": cmdCrun
  400. of "run": cmdTcc
  401. of "check": cmdCheck
  402. of "e": cmdNimscript
  403. of "doc0": cmdDoc0
  404. of "doc2", "doc": cmdDoc
  405. of "doc2tex": cmdDoc2tex
  406. of "rst2html": cmdRst2html
  407. of "md2tex": cmdMd2tex
  408. of "md2html": cmdMd2html
  409. of "rst2tex": cmdRst2tex
  410. of "jsondoc0": cmdJsondoc0
  411. of "jsondoc2", "jsondoc": cmdJsondoc
  412. of "ctags": cmdCtags
  413. of "buildindex": cmdBuildindex
  414. of "gendepend": cmdGendepend
  415. of "dump": cmdDump
  416. of "parse": cmdParse
  417. of "rod": cmdRod
  418. of "secret": cmdInteractive
  419. of "nop", "help": cmdNop
  420. of "jsonscript": cmdJsonscript
  421. else: cmdUnknown
  422. proc setCmd*(conf: ConfigRef, cmd: Command) =
  423. ## sets cmd, backend so subsequent flags can query it (e.g. so --gc:arc can be ignored for backendJs)
  424. # Note that `--backend` can override the backend, so the logic here must remain reversible.
  425. conf.cmd = cmd
  426. case cmd
  427. of cmdCompileToC, cmdCrun, cmdTcc: conf.backend = backendC
  428. of cmdCompileToCpp: conf.backend = backendCpp
  429. of cmdCompileToOC: conf.backend = backendObjc
  430. of cmdCompileToJS: conf.backend = backendJs
  431. else: discard
  432. proc setCommandEarly*(conf: ConfigRef, command: string) =
  433. conf.command = command
  434. setCmd(conf, command.parseCommand)
  435. # command early customizations
  436. # must be handled here to honor subsequent `--hint:x:on|off`
  437. case conf.cmd
  438. of cmdRst2html, cmdRst2tex, cmdMd2html, cmdMd2tex:
  439. # xxx see whether to add others: cmdGendepend, etc.
  440. conf.foreignPackageNotes = {hintSuccessX}
  441. else:
  442. conf.foreignPackageNotes = foreignPackageNotesDefault
  443. proc specialDefine(conf: ConfigRef, key: string; pass: TCmdLinePass) =
  444. # Keep this syncronized with the default config/nim.cfg!
  445. if cmpIgnoreStyle(key, "nimQuirky") == 0:
  446. conf.exc = excQuirky
  447. elif cmpIgnoreStyle(key, "release") == 0 or cmpIgnoreStyle(key, "danger") == 0:
  448. if pass in {passCmd1, passPP}:
  449. conf.options.excl {optStackTrace, optLineTrace, optLineDir, optOptimizeSize}
  450. conf.globalOptions.excl {optExcessiveStackTrace, optCDebug}
  451. conf.options.incl optOptimizeSpeed
  452. if cmpIgnoreStyle(key, "danger") == 0 or cmpIgnoreStyle(key, "quick") == 0:
  453. if pass in {passCmd1, passPP}:
  454. conf.options.excl {optObjCheck, optFieldCheck, optRangeCheck, optBoundsCheck,
  455. optOverflowCheck, optAssert, optStackTrace, optLineTrace, optLineDir}
  456. conf.globalOptions.excl {optCDebug}
  457. proc initOrcDefines*(conf: ConfigRef) =
  458. conf.selectedGC = gcOrc
  459. defineSymbol(conf.symbols, "gcorc")
  460. defineSymbol(conf.symbols, "gcdestructors")
  461. incl conf.globalOptions, optSeqDestructors
  462. incl conf.globalOptions, optTinyRtti
  463. defineSymbol(conf.symbols, "nimSeqsV2")
  464. defineSymbol(conf.symbols, "nimV2")
  465. if conf.exc == excNone and conf.backend != backendCpp:
  466. conf.exc = excGoto
  467. proc registerArcOrc(pass: TCmdLinePass, conf: ConfigRef) =
  468. defineSymbol(conf.symbols, "gcdestructors")
  469. incl conf.globalOptions, optSeqDestructors
  470. incl conf.globalOptions, optTinyRtti
  471. if pass in {passCmd2, passPP}:
  472. defineSymbol(conf.symbols, "nimSeqsV2")
  473. defineSymbol(conf.symbols, "nimV2")
  474. if conf.exc == excNone and conf.backend != backendCpp:
  475. conf.exc = excGoto
  476. proc unregisterArcOrc*(conf: ConfigRef) =
  477. undefSymbol(conf.symbols, "gcdestructors")
  478. undefSymbol(conf.symbols, "gcarc")
  479. undefSymbol(conf.symbols, "gcorc")
  480. undefSymbol(conf.symbols, "gcatomicarc")
  481. undefSymbol(conf.symbols, "nimSeqsV2")
  482. undefSymbol(conf.symbols, "nimV2")
  483. excl conf.globalOptions, optSeqDestructors
  484. excl conf.globalOptions, optTinyRtti
  485. proc processMemoryManagementOption(switch, arg: string, pass: TCmdLinePass,
  486. info: TLineInfo; conf: ConfigRef) =
  487. if conf.backend == backendJs: return # for: bug #16033
  488. expectArg(conf, switch, arg, pass, info)
  489. if pass in {passCmd2, passPP}:
  490. case arg.normalize
  491. of "boehm":
  492. unregisterArcOrc(conf)
  493. conf.selectedGC = gcBoehm
  494. defineSymbol(conf.symbols, "boehmgc")
  495. incl conf.globalOptions, optTlsEmulation # Boehm GC doesn't scan the real TLS
  496. of "refc":
  497. unregisterArcOrc(conf)
  498. defineSymbol(conf.symbols, "gcrefc")
  499. conf.selectedGC = gcRefc
  500. of "markandsweep":
  501. unregisterArcOrc(conf)
  502. conf.selectedGC = gcMarkAndSweep
  503. defineSymbol(conf.symbols, "gcmarkandsweep")
  504. of "destructors", "arc":
  505. conf.selectedGC = gcArc
  506. defineSymbol(conf.symbols, "gcarc")
  507. registerArcOrc(pass, conf)
  508. of "orc":
  509. conf.selectedGC = gcOrc
  510. defineSymbol(conf.symbols, "gcorc")
  511. registerArcOrc(pass, conf)
  512. of "atomicarc":
  513. conf.selectedGC = gcAtomicArc
  514. defineSymbol(conf.symbols, "gcatomicarc")
  515. registerArcOrc(pass, conf)
  516. of "hooks":
  517. conf.selectedGC = gcHooks
  518. defineSymbol(conf.symbols, "gchooks")
  519. incl conf.globalOptions, optSeqDestructors
  520. processOnOffSwitchG(conf, {optSeqDestructors}, arg, pass, info)
  521. if pass in {passCmd2, passPP}:
  522. defineSymbol(conf.symbols, "nimSeqsV2")
  523. of "go":
  524. unregisterArcOrc(conf)
  525. conf.selectedGC = gcGo
  526. defineSymbol(conf.symbols, "gogc")
  527. of "none":
  528. unregisterArcOrc(conf)
  529. conf.selectedGC = gcNone
  530. defineSymbol(conf.symbols, "nogc")
  531. of "stack", "regions":
  532. unregisterArcOrc(conf)
  533. conf.selectedGC = gcRegions
  534. defineSymbol(conf.symbols, "gcregions")
  535. else: localError(conf, info, errNoneBoehmRefcExpectedButXFound % arg)
  536. proc processSwitch*(switch, arg: string, pass: TCmdLinePass, info: TLineInfo;
  537. conf: ConfigRef) =
  538. var
  539. key, val: string
  540. case switch.normalize
  541. of "eval":
  542. expectArg(conf, switch, arg, pass, info)
  543. conf.projectIsCmd = true
  544. conf.cmdInput = arg # can be empty (a nim file with empty content is valid too)
  545. if conf.cmd == cmdNone:
  546. conf.command = "e"
  547. conf.setCmd cmdNimscript # better than `cmdCrun` as a default
  548. conf.implicitCmd = true
  549. of "path", "p":
  550. expectArg(conf, switch, arg, pass, info)
  551. for path in nimbleSubs(conf, arg):
  552. addPath(conf, if pass == passPP: processCfgPath(conf, path, info)
  553. else: processPath(conf, path, info), info)
  554. of "nimblepath", "babelpath":
  555. if switch.normalize == "babelpath": deprecatedAlias(switch, "nimblepath")
  556. if pass in {passCmd2, passPP} and optNoNimblePath notin conf.globalOptions:
  557. expectArg(conf, switch, arg, pass, info)
  558. var path = processPath(conf, arg, info, notRelativeToProj=true)
  559. let nimbleDir = AbsoluteDir getEnv("NIMBLE_DIR")
  560. if not nimbleDir.isEmpty and pass == passPP:
  561. path = nimbleDir / RelativeDir"pkgs2"
  562. nimblePath(conf, path, info)
  563. path = nimbleDir / RelativeDir"pkgs"
  564. nimblePath(conf, path, info)
  565. of "nonimblepath", "nobabelpath":
  566. if switch.normalize == "nobabelpath": deprecatedAlias(switch, "nonimblepath")
  567. expectNoArg(conf, switch, arg, pass, info)
  568. disableNimblePath(conf)
  569. of "clearnimblepath":
  570. expectNoArg(conf, switch, arg, pass, info)
  571. clearNimblePath(conf)
  572. of "excludepath":
  573. expectArg(conf, switch, arg, pass, info)
  574. let path = processPath(conf, arg, info)
  575. conf.searchPaths.keepItIf(it != path)
  576. conf.lazyPaths.keepItIf(it != path)
  577. of "nimcache":
  578. expectArg(conf, switch, arg, pass, info)
  579. var arg = arg
  580. # refs bug #18674, otherwise `--os:windows` messes up with `--nimcache` set
  581. # in config nims files, e.g. via: `import os; switch("nimcache", "/tmp/somedir")`
  582. if conf.target.targetOS == osWindows and DirSep == '/': arg = arg.replace('\\', '/')
  583. conf.nimcacheDir = processPath(conf, arg, info, notRelativeToProj=true)
  584. of "out", "o":
  585. expectArg(conf, switch, arg, pass, info)
  586. let f = splitFile(processPath(conf, arg, info, notRelativeToProj=true).string)
  587. conf.outFile = RelativeFile f.name & f.ext
  588. conf.outDir = toAbsoluteDir f.dir
  589. of "outdir":
  590. expectArg(conf, switch, arg, pass, info)
  591. conf.outDir = processPath(conf, arg, info, notRelativeToProj=true)
  592. of "usenimcache":
  593. processOnOffSwitchG(conf, {optUseNimcache}, arg, pass, info)
  594. of "docseesrcurl":
  595. expectArg(conf, switch, arg, pass, info)
  596. conf.docSeeSrcUrl = arg
  597. of "docroot":
  598. conf.docRoot = if arg.len == 0: docRootDefault else: arg
  599. of "backend", "b":
  600. let backend = parseEnum(arg.normalize, TBackend.default)
  601. if backend == TBackend.default: localError(conf, info, "invalid backend: '$1'" % arg)
  602. if backend == backendJs: # bug #21209
  603. conf.globalOptions.excl {optThreadAnalysis, optThreads}
  604. if optRun in conf.globalOptions:
  605. # for now, -r uses nodejs, so define nodejs
  606. defineSymbol(conf.symbols, "nodejs")
  607. conf.backend = backend
  608. of "doccmd": conf.docCmd = arg
  609. of "define", "d":
  610. expectArg(conf, switch, arg, pass, info)
  611. if {':', '='} in arg:
  612. splitSwitch(conf, arg, key, val, pass, info)
  613. specialDefine(conf, key, pass)
  614. defineSymbol(conf.symbols, key, val)
  615. else:
  616. specialDefine(conf, arg, pass)
  617. defineSymbol(conf.symbols, arg)
  618. of "undef", "u":
  619. expectArg(conf, switch, arg, pass, info)
  620. undefSymbol(conf.symbols, arg)
  621. of "compile":
  622. expectArg(conf, switch, arg, pass, info)
  623. if pass in {passCmd2, passPP}: processCompile(conf, arg)
  624. of "link":
  625. expectArg(conf, switch, arg, pass, info)
  626. if pass in {passCmd2, passPP}:
  627. addExternalFileToLink(conf, AbsoluteFile arg)
  628. of "debuginfo":
  629. processOnOffSwitchG(conf, {optCDebug}, arg, pass, info)
  630. of "embedsrc":
  631. processOnOffSwitchG(conf, {optEmbedOrigSrc}, arg, pass, info)
  632. of "compileonly", "c":
  633. processOnOffSwitchG(conf, {optCompileOnly}, arg, pass, info)
  634. of "nolinking":
  635. processOnOffSwitchG(conf, {optNoLinking}, arg, pass, info)
  636. of "nomain":
  637. processOnOffSwitchG(conf, {optNoMain}, arg, pass, info)
  638. of "forcebuild", "f":
  639. processOnOffSwitchG(conf, {optForceFullMake}, arg, pass, info)
  640. of "project":
  641. processOnOffSwitchG(conf, {optWholeProject, optGenIndex}, arg, pass, info)
  642. of "gc":
  643. warningDeprecated(conf, info, "`gc:option` is deprecated; use `mm:option` instead")
  644. processMemoryManagementOption(switch, arg, pass, info, conf)
  645. of "mm":
  646. processMemoryManagementOption(switch, arg, pass, info, conf)
  647. of "warnings", "w":
  648. if processOnOffSwitchOrList(conf, {optWarns}, arg, pass, info): listWarnings(conf)
  649. of "warning": processSpecificNote(arg, wWarning, pass, info, switch, conf)
  650. of "hint": processSpecificNote(arg, wHint, pass, info, switch, conf)
  651. of "warningaserror": processSpecificNote(arg, wWarningAsError, pass, info, switch, conf)
  652. of "hintaserror": processSpecificNote(arg, wHintAsError, pass, info, switch, conf)
  653. of "hints":
  654. if processOnOffSwitchOrList(conf, {optHints}, arg, pass, info): listHints(conf)
  655. of "threadanalysis":
  656. if conf.backend == backendJs: discard
  657. else: processOnOffSwitchG(conf, {optThreadAnalysis}, arg, pass, info)
  658. of "stacktrace": processOnOffSwitch(conf, {optStackTrace}, arg, pass, info)
  659. of "stacktracemsgs": processOnOffSwitch(conf, {optStackTraceMsgs}, arg, pass, info)
  660. of "excessivestacktrace": processOnOffSwitchG(conf, {optExcessiveStackTrace}, arg, pass, info)
  661. of "linetrace": processOnOffSwitch(conf, {optLineTrace}, arg, pass, info)
  662. of "debugger":
  663. case arg.normalize
  664. of "on", "native", "gdb":
  665. conf.globalOptions.incl optCDebug
  666. conf.options.incl optLineDir
  667. #defineSymbol(conf.symbols, "nimTypeNames") # type names are used in gdb pretty printing
  668. of "off":
  669. conf.globalOptions.excl optCDebug
  670. else:
  671. localError(conf, info, "expected native|gdb|on|off but found " & arg)
  672. of "g": # alias for --debugger:native
  673. conf.globalOptions.incl optCDebug
  674. conf.options.incl optLineDir
  675. #defineSymbol(conf.symbols, "nimTypeNames") # type names are used in gdb pretty printing
  676. of "profiler":
  677. processOnOffSwitch(conf, {optProfiler}, arg, pass, info)
  678. if optProfiler in conf.options: defineSymbol(conf.symbols, "profiler")
  679. else: undefSymbol(conf.symbols, "profiler")
  680. of "memtracker":
  681. processOnOffSwitch(conf, {optMemTracker}, arg, pass, info)
  682. if optMemTracker in conf.options: defineSymbol(conf.symbols, "memtracker")
  683. else: undefSymbol(conf.symbols, "memtracker")
  684. of "hotcodereloading":
  685. processOnOffSwitchG(conf, {optHotCodeReloading}, arg, pass, info)
  686. if conf.hcrOn:
  687. defineSymbol(conf.symbols, "hotcodereloading")
  688. defineSymbol(conf.symbols, "useNimRtl")
  689. # hardcoded linking with dynamic runtime for MSVC for smaller binaries
  690. # should do the same for all compilers (wherever applicable)
  691. if isVSCompatible(conf):
  692. extccomp.addCompileOptionCmd(conf, "/MD")
  693. else:
  694. undefSymbol(conf.symbols, "hotcodereloading")
  695. undefSymbol(conf.symbols, "useNimRtl")
  696. of "checks", "x": processOnOffSwitch(conf, ChecksOptions, arg, pass, info)
  697. of "floatchecks":
  698. processOnOffSwitch(conf, {optNaNCheck, optInfCheck}, arg, pass, info)
  699. of "infchecks": processOnOffSwitch(conf, {optInfCheck}, arg, pass, info)
  700. of "nanchecks": processOnOffSwitch(conf, {optNaNCheck}, arg, pass, info)
  701. of "objchecks": processOnOffSwitch(conf, {optObjCheck}, arg, pass, info)
  702. of "fieldchecks": processOnOffSwitch(conf, {optFieldCheck}, arg, pass, info)
  703. of "rangechecks": processOnOffSwitch(conf, {optRangeCheck}, arg, pass, info)
  704. of "boundchecks": processOnOffSwitch(conf, {optBoundsCheck}, arg, pass, info)
  705. of "refchecks":
  706. warningDeprecated(conf, info, "refchecks is deprecated!")
  707. processOnOffSwitch(conf, {optRefCheck}, arg, pass, info)
  708. of "overflowchecks": processOnOffSwitch(conf, {optOverflowCheck}, arg, pass, info)
  709. of "staticboundchecks": processOnOffSwitch(conf, {optStaticBoundsCheck}, arg, pass, info)
  710. of "stylechecks": processOnOffSwitch(conf, {optStyleCheck}, arg, pass, info)
  711. of "linedir": processOnOffSwitch(conf, {optLineDir}, arg, pass, info)
  712. of "assertions", "a": processOnOffSwitch(conf, {optAssert}, arg, pass, info)
  713. of "threads":
  714. if conf.backend == backendJs or conf.cmd == cmdNimscript: discard
  715. else: processOnOffSwitchG(conf, {optThreads}, arg, pass, info)
  716. #if optThreads in conf.globalOptions: conf.setNote(warnGcUnsafe)
  717. of "tlsemulation": processOnOffSwitchG(conf, {optTlsEmulation}, arg, pass, info)
  718. of "implicitstatic":
  719. processOnOffSwitch(conf, {optImplicitStatic}, arg, pass, info)
  720. of "patterns", "trmacros":
  721. if switch.normalize == "patterns": deprecatedAlias(switch, "trmacros")
  722. processOnOffSwitch(conf, {optTrMacros}, arg, pass, info)
  723. of "opt":
  724. expectArg(conf, switch, arg, pass, info)
  725. case arg.normalize
  726. of "speed":
  727. incl(conf.options, optOptimizeSpeed)
  728. excl(conf.options, optOptimizeSize)
  729. of "size":
  730. excl(conf.options, optOptimizeSpeed)
  731. incl(conf.options, optOptimizeSize)
  732. of "none":
  733. excl(conf.options, optOptimizeSpeed)
  734. excl(conf.options, optOptimizeSize)
  735. else: localError(conf, info, errNoneSpeedOrSizeExpectedButXFound % arg)
  736. of "app":
  737. expectArg(conf, switch, arg, pass, info)
  738. case arg.normalize
  739. of "gui":
  740. incl(conf.globalOptions, optGenGuiApp)
  741. defineSymbol(conf.symbols, "executable")
  742. defineSymbol(conf.symbols, "guiapp")
  743. of "console":
  744. excl(conf.globalOptions, optGenGuiApp)
  745. defineSymbol(conf.symbols, "executable")
  746. defineSymbol(conf.symbols, "consoleapp")
  747. of "lib":
  748. incl(conf.globalOptions, optGenDynLib)
  749. excl(conf.globalOptions, optGenGuiApp)
  750. defineSymbol(conf.symbols, "library")
  751. defineSymbol(conf.symbols, "dll")
  752. of "staticlib":
  753. incl(conf.globalOptions, optGenStaticLib)
  754. incl(conf.globalOptions, optNoMain)
  755. excl(conf.globalOptions, optGenGuiApp)
  756. defineSymbol(conf.symbols, "library")
  757. defineSymbol(conf.symbols, "staticlib")
  758. else: localError(conf, info, errGuiConsoleOrLibExpectedButXFound % arg)
  759. of "passc", "t":
  760. expectArg(conf, switch, arg, pass, info)
  761. if pass in {passCmd2, passPP}: extccomp.addCompileOptionCmd(conf, arg)
  762. of "passl", "l":
  763. expectArg(conf, switch, arg, pass, info)
  764. if pass in {passCmd2, passPP}: extccomp.addLinkOptionCmd(conf, arg)
  765. of "cincludes":
  766. expectArg(conf, switch, arg, pass, info)
  767. if pass in {passCmd2, passPP}: conf.cIncludes.add processPath(conf, arg, info)
  768. of "clibdir":
  769. expectArg(conf, switch, arg, pass, info)
  770. if pass in {passCmd2, passPP}: conf.cLibs.add processPath(conf, arg, info)
  771. of "clib":
  772. expectArg(conf, switch, arg, pass, info)
  773. if pass in {passCmd2, passPP}:
  774. conf.cLinkedLibs.add arg
  775. of "header":
  776. if conf != nil: conf.headerFile = arg
  777. incl(conf.globalOptions, optGenIndex)
  778. of "nimbasepattern":
  779. if conf != nil: conf.nimbasePattern = arg
  780. of "index":
  781. case arg.normalize
  782. of "", "on": conf.globalOptions.incl {optGenIndex}
  783. of "only": conf.globalOptions.incl {optGenIndexOnly, optGenIndex}
  784. of "off": conf.globalOptions.excl {optGenIndex, optGenIndexOnly}
  785. else: localError(conf, info, errOnOrOffExpectedButXFound % arg)
  786. of "noimportdoc":
  787. processOnOffSwitchG(conf, {optNoImportdoc}, arg, pass, info)
  788. of "import":
  789. expectArg(conf, switch, arg, pass, info)
  790. if pass in {passCmd2, passPP}:
  791. conf.implicitImports.add findModule(conf, arg, toFullPath(conf, info)).string
  792. of "include":
  793. expectArg(conf, switch, arg, pass, info)
  794. if pass in {passCmd2, passPP}:
  795. conf.implicitIncludes.add findModule(conf, arg, toFullPath(conf, info)).string
  796. of "listcmd":
  797. processOnOffSwitchG(conf, {optListCmd}, arg, pass, info)
  798. of "asm":
  799. processOnOffSwitchG(conf, {optProduceAsm}, arg, pass, info)
  800. of "genmapping":
  801. processOnOffSwitchG(conf, {optGenMapping}, arg, pass, info)
  802. of "os":
  803. expectArg(conf, switch, arg, pass, info)
  804. let theOS = platform.nameToOS(arg)
  805. if theOS == osNone:
  806. let osList = platform.listOSnames().join(", ")
  807. localError(conf, info, "unknown OS: '$1'. Available options are: $2" % [arg, $osList])
  808. else:
  809. setTarget(conf.target, theOS, conf.target.targetCPU)
  810. of "cpu":
  811. expectArg(conf, switch, arg, pass, info)
  812. let cpu = platform.nameToCPU(arg)
  813. if cpu == cpuNone:
  814. let cpuList = platform.listCPUnames().join(", ")
  815. localError(conf, info, "unknown CPU: '$1'. Available options are: $2" % [ arg, cpuList])
  816. else:
  817. setTarget(conf.target, conf.target.targetOS, cpu)
  818. of "run", "r":
  819. processOnOffSwitchG(conf, {optRun}, arg, pass, info)
  820. if conf.backend == backendJs:
  821. # for now, -r uses nodejs, so define nodejs
  822. defineSymbol(conf.symbols, "nodejs")
  823. of "maxloopiterationsvm":
  824. expectArg(conf, switch, arg, pass, info)
  825. conf.maxLoopIterationsVM = parseInt(arg)
  826. of "errormax":
  827. expectArg(conf, switch, arg, pass, info)
  828. # Note: `nim check` (etc) can overwrite this.
  829. # `0` is meaningless, give it a useful meaning as in clang's -ferror-limit
  830. # If user doesn't set this flag and the code doesn't either, it'd
  831. # have the same effect as errorMax = 1
  832. let ret = parseInt(arg)
  833. conf.errorMax = if ret == 0: high(int) else: ret
  834. of "verbosity":
  835. expectArg(conf, switch, arg, pass, info)
  836. let verbosity = parseInt(arg)
  837. if verbosity notin 0..3:
  838. localError(conf, info, "invalid verbosity level: '$1'" % arg)
  839. conf.verbosity = verbosity
  840. var verb = NotesVerbosity[conf.verbosity]
  841. ## We override the default `verb` by explicitly modified (set/unset) notes.
  842. conf.notes = (conf.modifiedyNotes * conf.notes + verb) -
  843. (conf.modifiedyNotes * verb - conf.notes)
  844. conf.mainPackageNotes = conf.notes
  845. of "parallelbuild":
  846. expectArg(conf, switch, arg, pass, info)
  847. conf.numberOfProcessors = parseInt(arg)
  848. of "version", "v":
  849. expectNoArg(conf, switch, arg, pass, info)
  850. writeVersionInfo(conf, pass)
  851. of "advanced":
  852. expectNoArg(conf, switch, arg, pass, info)
  853. writeAdvancedUsage(conf, pass)
  854. of "fullhelp":
  855. expectNoArg(conf, switch, arg, pass, info)
  856. writeFullhelp(conf, pass)
  857. of "help", "h":
  858. expectNoArg(conf, switch, arg, pass, info)
  859. helpOnError(conf, pass)
  860. of "symbolfiles", "incremental", "ic":
  861. if switch.normalize == "symbolfiles": deprecatedAlias(switch, "incremental")
  862. # xxx maybe also ic, since not in help?
  863. if pass in {passCmd2, passPP}:
  864. case arg.normalize
  865. of "on": conf.symbolFiles = v2Sf
  866. of "off": conf.symbolFiles = disabledSf
  867. of "writeonly": conf.symbolFiles = writeOnlySf
  868. of "readonly": conf.symbolFiles = readOnlySf
  869. of "v2": conf.symbolFiles = v2Sf
  870. of "stress": conf.symbolFiles = stressTest
  871. else: localError(conf, info, "invalid option for --incremental: " & arg)
  872. setUseIc(conf.symbolFiles != disabledSf)
  873. of "skipcfg":
  874. processOnOffSwitchG(conf, {optSkipSystemConfigFile}, arg, pass, info)
  875. of "skipprojcfg":
  876. processOnOffSwitchG(conf, {optSkipProjConfigFile}, arg, pass, info)
  877. of "skipusercfg":
  878. processOnOffSwitchG(conf, {optSkipUserConfigFile}, arg, pass, info)
  879. of "skipparentcfg":
  880. processOnOffSwitchG(conf, {optSkipParentConfigFiles}, arg, pass, info)
  881. of "genscript", "gendeps":
  882. if switch.normalize == "gendeps": deprecatedAlias(switch, "genscript")
  883. processOnOffSwitchG(conf, {optGenScript}, arg, pass, info)
  884. processOnOffSwitchG(conf, {optCompileOnly}, arg, pass, info)
  885. of "gencdeps":
  886. processOnOffSwitchG(conf, {optGenCDeps}, arg, pass, info)
  887. of "colors": processOnOffSwitchG(conf, {optUseColors}, arg, pass, info)
  888. of "lib":
  889. expectArg(conf, switch, arg, pass, info)
  890. conf.libpath = processPath(conf, arg, info, notRelativeToProj=true)
  891. of "putenv":
  892. expectArg(conf, switch, arg, pass, info)
  893. splitSwitch(conf, arg, key, val, pass, info)
  894. os.putEnv(key, val)
  895. of "cc":
  896. if conf.backend != backendJs: # bug #19330
  897. expectArg(conf, switch, arg, pass, info)
  898. setCC(conf, arg, info)
  899. of "track":
  900. expectArg(conf, switch, arg, pass, info)
  901. track(conf, arg, info)
  902. of "trackdirty":
  903. expectArg(conf, switch, arg, pass, info)
  904. trackDirty(conf, arg, info)
  905. of "suggest":
  906. expectNoArg(conf, switch, arg, pass, info)
  907. conf.ideCmd = ideSug
  908. of "def":
  909. expectArg(conf, switch, arg, pass, info)
  910. trackIde(conf, ideDef, arg, info)
  911. of "context":
  912. expectNoArg(conf, switch, arg, pass, info)
  913. conf.ideCmd = ideCon
  914. of "usages":
  915. expectArg(conf, switch, arg, pass, info)
  916. trackIde(conf, ideUse, arg, info)
  917. of "defusages":
  918. expectArg(conf, switch, arg, pass, info)
  919. trackIde(conf, ideDus, arg, info)
  920. of "stdout":
  921. processOnOffSwitchG(conf, {optStdout}, arg, pass, info)
  922. of "filenames":
  923. case arg.normalize
  924. of "abs": conf.filenameOption = foAbs
  925. of "canonical": conf.filenameOption = foCanonical
  926. of "legacyrelproj": conf.filenameOption = foLegacyRelProj
  927. else: localError(conf, info, "expected: abs|canonical|legacyRelProj, got: $1" % arg)
  928. of "processing":
  929. incl(conf.notes, hintProcessing)
  930. incl(conf.mainPackageNotes, hintProcessing)
  931. case arg.normalize
  932. of "dots": conf.hintProcessingDots = true
  933. of "filenames": conf.hintProcessingDots = false
  934. of "off":
  935. excl(conf.notes, hintProcessing)
  936. excl(conf.mainPackageNotes, hintProcessing)
  937. else: localError(conf, info, "expected: dots|filenames|off, got: $1" % arg)
  938. of "unitsep":
  939. conf.unitSep = if switchOn(arg): "\31" else: ""
  940. of "listfullpaths":
  941. # xxx in future work, use `warningDeprecated`
  942. conf.filenameOption = if switchOn(arg): foAbs else: foCanonical
  943. of "spellsuggest":
  944. if arg.len == 0: conf.spellSuggestMax = spellSuggestSecretSauce
  945. elif arg == "auto": conf.spellSuggestMax = spellSuggestSecretSauce
  946. else: conf.spellSuggestMax = parseInt(arg)
  947. of "declaredlocs":
  948. processOnOffSwitchG(conf, {optDeclaredLocs}, arg, pass, info)
  949. of "dynliboverride":
  950. dynlibOverride(conf, switch, arg, pass, info)
  951. of "dynliboverrideall":
  952. processOnOffSwitchG(conf, {optDynlibOverrideAll}, arg, pass, info)
  953. of "experimental":
  954. if arg.len == 0:
  955. conf.features.incl oldExperimentalFeatures
  956. else:
  957. try:
  958. conf.features.incl parseEnum[Feature](arg)
  959. except ValueError:
  960. localError(conf, info, "unknown experimental feature")
  961. of "legacy":
  962. try:
  963. conf.legacyFeatures.incl parseEnum[LegacyFeature](arg)
  964. except ValueError:
  965. localError(conf, info, "unknown obsolete feature")
  966. of "nocppexceptions":
  967. expectNoArg(conf, switch, arg, pass, info)
  968. conf.exc = low(ExceptionSystem)
  969. defineSymbol(conf.symbols, "noCppExceptions")
  970. of "shownonexports":
  971. expectNoArg(conf, switch, arg, pass, info)
  972. showNonExportedFields(conf)
  973. of "exceptions":
  974. case arg.normalize
  975. of "cpp": conf.exc = excCpp
  976. of "setjmp": conf.exc = excSetjmp
  977. of "quirky": conf.exc = excQuirky
  978. of "goto": conf.exc = excGoto
  979. else: localError(conf, info, errInvalidExceptionSystem % arg)
  980. of "cppdefine":
  981. expectArg(conf, switch, arg, pass, info)
  982. if conf != nil:
  983. conf.cppDefine(arg)
  984. of "newruntime":
  985. warningDeprecated(conf, info, "newruntime is deprecated, use arc/orc instead!")
  986. expectNoArg(conf, switch, arg, pass, info)
  987. if pass in {passCmd2, passPP}:
  988. doAssert(conf != nil)
  989. incl(conf.features, destructor)
  990. incl(conf.globalOptions, optTinyRtti)
  991. incl(conf.globalOptions, optOwnedRefs)
  992. incl(conf.globalOptions, optSeqDestructors)
  993. defineSymbol(conf.symbols, "nimV2")
  994. conf.selectedGC = gcHooks
  995. defineSymbol(conf.symbols, "gchooks")
  996. defineSymbol(conf.symbols, "nimSeqsV2")
  997. defineSymbol(conf.symbols, "nimOwnedEnabled")
  998. of "seqsv2":
  999. processOnOffSwitchG(conf, {optSeqDestructors}, arg, pass, info)
  1000. if pass in {passCmd2, passPP}:
  1001. defineSymbol(conf.symbols, "nimSeqsV2")
  1002. of "stylecheck":
  1003. case arg.normalize
  1004. of "off": conf.globalOptions = conf.globalOptions - {optStyleHint, optStyleError}
  1005. of "hint": conf.globalOptions = conf.globalOptions + {optStyleHint} - {optStyleError}
  1006. of "error": conf.globalOptions = conf.globalOptions + {optStyleError}
  1007. of "usages": conf.globalOptions.incl optStyleUsages
  1008. else: localError(conf, info, errOffHintsError % arg)
  1009. of "showallmismatches":
  1010. processOnOffSwitchG(conf, {optShowAllMismatches}, arg, pass, info)
  1011. of "cppcompiletonamespace":
  1012. if arg.len > 0:
  1013. conf.cppCustomNamespace = arg
  1014. else:
  1015. conf.cppCustomNamespace = "Nim"
  1016. defineSymbol(conf.symbols, "cppCompileToNamespace", conf.cppCustomNamespace)
  1017. of "docinternal":
  1018. processOnOffSwitchG(conf, {optDocInternal}, arg, pass, info)
  1019. of "multimethods":
  1020. processOnOffSwitchG(conf, {optMultiMethods}, arg, pass, info)
  1021. of "expandmacro":
  1022. expectArg(conf, switch, arg, pass, info)
  1023. conf.macrosToExpand[arg] = "T"
  1024. of "expandarc":
  1025. expectArg(conf, switch, arg, pass, info)
  1026. conf.arcToExpand[arg] = "T"
  1027. of "benchmarkvm":
  1028. processOnOffSwitchG(conf, {optBenchmarkVM}, arg, pass, info)
  1029. of "profilevm":
  1030. processOnOffSwitchG(conf, {optProfileVM}, arg, pass, info)
  1031. of "sinkinference":
  1032. processOnOffSwitch(conf, {optSinkInference}, arg, pass, info)
  1033. of "cursorinference":
  1034. # undocumented, for debugging purposes only:
  1035. processOnOffSwitch(conf, {optCursorInference}, arg, pass, info)
  1036. of "panics":
  1037. processOnOffSwitchG(conf, {optPanics}, arg, pass, info)
  1038. if optPanics in conf.globalOptions:
  1039. defineSymbol(conf.symbols, "nimPanics")
  1040. of "jsbigint64":
  1041. processOnOffSwitchG(conf, {optJsBigInt64}, arg, pass, info)
  1042. of "sourcemap": # xxx document in --fullhelp
  1043. conf.globalOptions.incl optSourcemap
  1044. conf.options.incl optLineDir
  1045. of "deepcopy":
  1046. processOnOffSwitchG(conf, {optEnableDeepCopy}, arg, pass, info)
  1047. of "": # comes from "-" in for example: `nim c -r -` (gets stripped from -)
  1048. handleStdinInput(conf)
  1049. of "nilseqs", "nilchecks", "symbol", "taintmode", "cs", "deadcodeelim": warningOptionNoop(switch)
  1050. of "nimmainprefix": conf.nimMainPrefix = arg
  1051. else:
  1052. if strutils.find(switch, '.') >= 0: options.setConfigVar(conf, switch, arg)
  1053. else: invalidCmdLineOption(conf, pass, switch, info)
  1054. proc processCommand*(switch: string, pass: TCmdLinePass; config: ConfigRef) =
  1055. var cmd, arg: string
  1056. splitSwitch(config, switch, cmd, arg, pass, gCmdLineInfo)
  1057. processSwitch(cmd, arg, pass, gCmdLineInfo, config)
  1058. proc processSwitch*(pass: TCmdLinePass; p: OptParser; config: ConfigRef) =
  1059. # hint[X]:off is parsed as (p.key = "hint[X]", p.val = "off")
  1060. # we transform it to (key = hint, val = [X]:off)
  1061. var bracketLe = strutils.find(p.key, '[')
  1062. if bracketLe >= 0:
  1063. var key = substr(p.key, 0, bracketLe - 1)
  1064. var val = substr(p.key, bracketLe) & ':' & p.val
  1065. processSwitch(key, val, pass, gCmdLineInfo, config)
  1066. else:
  1067. processSwitch(p.key, p.val, pass, gCmdLineInfo, config)
  1068. proc processArgument*(pass: TCmdLinePass; p: OptParser;
  1069. argsCount: var int; config: ConfigRef): bool =
  1070. if argsCount == 0 and config.implicitCmd:
  1071. argsCount.inc
  1072. if argsCount == 0:
  1073. # nim filename.nims is the same as "nim e filename.nims":
  1074. if p.key.endsWith(".nims"):
  1075. config.setCmd cmdNimscript
  1076. incl(config.globalOptions, optWasNimscript)
  1077. config.projectName = unixToNativePath(p.key)
  1078. config.arguments = cmdLineRest(p)
  1079. result = true
  1080. elif pass != passCmd2: setCommandEarly(config, p.key)
  1081. else:
  1082. if pass == passCmd1: config.commandArgs.add p.key
  1083. if argsCount == 1:
  1084. if p.key.endsWith(".nims"):
  1085. incl(config.globalOptions, optWasNimscript)
  1086. # support UNIX style filenames everywhere for portable build scripts:
  1087. if config.projectName.len == 0:
  1088. config.projectName = unixToNativePath(p.key)
  1089. config.arguments = cmdLineRest(p)
  1090. result = true
  1091. inc argsCount