commands.nim 48 KB

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