koch.nim 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780
  1. #
  2. #
  3. # Maintenance program for Nim
  4. # (c) Copyright 2017 Andreas Rumpf
  5. #
  6. # See the file "copying.txt", included in this
  7. # distribution, for details about the copyright.
  8. #
  9. # See doc/koch.txt for documentation.
  10. #
  11. const
  12. # examples of possible values for repos: Head, ea82b54
  13. NimbleStableCommit = "39b61c5d85afffd53aa404ac9126419ae1bd8d67" # master
  14. AtlasStableCommit = "5faec3e9a33afe99a7d22377dd1b45a5391f5504"
  15. ChecksumsStableCommit = "025bcca3915a1b9f19878cea12ad68f9884648fc"
  16. SatStableCommit = "faf1617f44d7632ee9601ebc13887644925dcc01"
  17. # examples of possible values for fusion: #head, #ea82b54, 1.2.3
  18. FusionStableHash = "#372ee4313827ef9f2ea388840f7d6b46c2b1b014"
  19. HeadHash = "#head"
  20. when not defined(windows):
  21. const
  22. Z3StableCommit = "65de3f748a6812eecd7db7c478d5fc54424d368b" # the version of Z3 that DrNim uses
  23. when defined(gcc) and defined(windows):
  24. when defined(x86):
  25. {.link: "icons/koch.res".}
  26. else:
  27. {.link: "icons/koch_icon.o".}
  28. when defined(amd64) and defined(windows) and defined(vcc):
  29. {.link: "icons/koch-amd64-windows-vcc.res".}
  30. when defined(i386) and defined(windows) and defined(vcc):
  31. {.link: "icons/koch-i386-windows-vcc.res".}
  32. import std/[os, strutils, parseopt, osproc]
  33. # Using `std/os` instead of `os` to fail early if config isn't set up properly.
  34. # If this fails with: `Error: cannot open file: std/os`, see
  35. # https://github.com/nim-lang/Nim/pull/14291 for explanation + how to fix.
  36. when defined(nimPreviewSlimSystem):
  37. import std/[assertions, syncio]
  38. import tools / kochdocs
  39. import tools / deps
  40. const VersionAsString = system.NimVersion
  41. const
  42. HelpText = """
  43. +-----------------------------------------------------------------+
  44. | Maintenance program for Nim |
  45. | Version $1|
  46. | (c) 2017 Andreas Rumpf |
  47. +-----------------------------------------------------------------+
  48. Build time: $2, $3
  49. Usage:
  50. koch [options] command [options for command]
  51. Options:
  52. --help, -h shows this help and quits
  53. --latest bundle the installers with bleeding edge versions of
  54. external components.
  55. --stable bundle the installers with stable versions of
  56. external components (default).
  57. --nim:path use specified path for nim binary
  58. --localdocs[:path] only build local documentations. If a path is not
  59. specified (or empty), the default is used.
  60. --skipIntegrityCheck skips integrity check when booting the compiler
  61. Possible Commands:
  62. boot [options] bootstraps with given command line options
  63. distrohelper [bindir] helper for distro packagers
  64. tools builds Nim related tools
  65. toolsNoExternal builds Nim related tools (except external tools,
  66. e.g. nimble)
  67. doesn't require network connectivity
  68. nimble builds the Nimble tool
  69. atlas builds the Atlas tool
  70. fusion installs fusion via Nimble
  71. Boot options:
  72. -d:release produce a release version of the compiler
  73. -d:nimUseLinenoise use the linenoise library for interactive mode
  74. `nim secret` (not needed on Windows)
  75. -d:leanCompiler produce a compiler without JS codegen or
  76. documentation generator in order to use less RAM
  77. for bootstrapping
  78. -d:nimHasLibFFI adds FFI support for allowing compile-time VM to
  79. interface with native functions (experimental,
  80. requires prior `koch installdeps libffi`)
  81. Commands for core developers:
  82. runCI runs continuous integration (CI), e.g. from Github Actions
  83. docs [options] generates the full documentation
  84. csource -d:danger builds the C sources for installation
  85. pdf builds the PDF documentation
  86. zip builds the installation zip package
  87. xz builds the installation tar.xz package
  88. testinstall test tar.xz package; Unix only!
  89. installdeps [options] installs external dependency (e.g. tinyc) to dist/
  90. tests [options] run the testsuite (run a subset of tests by
  91. specifying a category, e.g. `tests cat async`)
  92. temp options creates a temporary compiler for testing
  93. """
  94. let kochExe* = when isMainModule: os.getAppFilename() # always correct when koch is main program, even if `koch` exe renamed e.g.: `nim c -o:koch_debug koch.nim`
  95. else: getAppDir() / "koch".exe # works for winrelease
  96. proc kochExec*(cmd: string) =
  97. exec kochExe.quoteShell & " " & cmd
  98. proc kochExecFold*(desc, cmd: string) =
  99. execFold(desc, kochExe.quoteShell & " " & cmd)
  100. template withDir(dir, body) =
  101. let old = getCurrentDir()
  102. try:
  103. setCurrentDir(dir)
  104. body
  105. finally:
  106. setCurrentDir(old)
  107. let origDir = getCurrentDir()
  108. setCurrentDir(getAppDir())
  109. proc tryExec(cmd: string): bool =
  110. echo(cmd)
  111. result = execShellCmd(cmd) == 0
  112. proc safeRemove(filename: string) =
  113. if fileExists(filename): removeFile(filename)
  114. proc overwriteFile(source, dest: string) =
  115. safeRemove(dest)
  116. moveFile(source, dest)
  117. proc copyExe(source, dest: string) =
  118. safeRemove(dest)
  119. copyFile(dest=dest, source=source)
  120. inclFilePermissions(dest, {fpUserExec, fpGroupExec, fpOthersExec})
  121. const
  122. compileNimInst = "tools/niminst/niminst"
  123. distDir = "dist"
  124. proc csource(args: string) =
  125. nimexec(("cc $1 -r $3 --var:version=$2 --var:mingw=none csource " &
  126. "--main:compiler/nim.nim compiler/installer.ini $1") %
  127. [args, VersionAsString, compileNimInst])
  128. proc bundleC2nim(args: string) =
  129. cloneDependency(distDir, "https://github.com/nim-lang/c2nim.git")
  130. nimCompile("dist/c2nim/c2nim",
  131. options = "--noNimblePath --path:. " & args)
  132. proc bundleNimbleExe(latest: bool, args: string) =
  133. let commit = if latest: "HEAD" else: NimbleStableCommit
  134. cloneDependency(distDir, "https://github.com/nim-lang/nimble.git",
  135. commit = commit, allowBundled = true)
  136. cloneDependency(distDir / "nimble" / distDir, "https://github.com/nim-lang/checksums.git",
  137. commit = ChecksumsStableCommit, allowBundled = true) # or copy it from dist?
  138. # installer.ini expects it under $nim/bin
  139. nimCompile("dist/nimble/src/nimble.nim",
  140. options = "-d:release -d:nimNimbleBootstrap --noNimblePath " & args)
  141. proc bundleAtlasExe(latest: bool, args: string) =
  142. let commit = if latest: "HEAD" else: AtlasStableCommit
  143. cloneDependency(distDir, "https://github.com/nim-lang/atlas.git",
  144. commit = commit, allowBundled = true)
  145. cloneDependency(distDir / "atlas" / distDir, "https://github.com/nim-lang/sat.git",
  146. commit = SatStableCommit, allowBundled = true)
  147. # installer.ini expects it under $nim/bin
  148. nimCompile("dist/atlas/src/atlas.nim",
  149. options = "-d:release --noNimblePath -d:nimAtlasBootstrap " & args)
  150. proc bundleNimsuggest(args: string) =
  151. nimCompileFold("Compile nimsuggest", "nimsuggest/nimsuggest.nim",
  152. options = "-d:danger " & args)
  153. proc buildVccTool(args: string) =
  154. let input = "tools/vccexe/vccexe.nim"
  155. if contains(args, "--cc:vcc"):
  156. nimCompileFold("Compile Vcc", input, "build", options = args)
  157. let fileName = input.splitFile.name
  158. moveFile(exe("build" / fileName), exe("bin" / fileName))
  159. else:
  160. nimCompileFold("Compile Vcc", input, options = args)
  161. proc bundleNimpretty(args: string) =
  162. nimCompileFold("Compile nimpretty", "nimpretty/nimpretty.nim",
  163. options = "-d:release " & args)
  164. proc bundleWinTools(args: string) =
  165. nimCompile("tools/finish.nim", outputDir = "", options = args)
  166. buildVccTool(args)
  167. nimCompile("tools/nimgrab.nim", options = "-d:ssl " & args)
  168. nimCompile("tools/nimgrep.nim", options = args)
  169. nimCompile("testament/testament.nim", options = args)
  170. when false:
  171. # not yet a tool worth including
  172. nimCompile(r"tools\downloader.nim",
  173. options = r"--cc:vcc --app:gui -d:ssl --noNimblePath --path:..\ui " & args)
  174. proc bundleChecksums(latest: bool) =
  175. let commit = if latest: "HEAD" else: ChecksumsStableCommit
  176. cloneDependency(distDir, "https://github.com/nim-lang/checksums.git", commit, allowBundled = true)
  177. proc zip(latest: bool; args: string) =
  178. bundleChecksums(latest)
  179. bundleNimbleExe(latest, args)
  180. bundleAtlasExe(latest, args)
  181. bundleNimsuggest(args)
  182. bundleNimpretty(args)
  183. bundleWinTools(args)
  184. nimexec("cc -r $2 --var:version=$1 --var:mingw=none --main:compiler/nim.nim scripts compiler/installer.ini" %
  185. [VersionAsString, compileNimInst])
  186. exec("$# --var:version=$# --var:mingw=none --main:compiler/nim.nim zip compiler/installer.ini" %
  187. ["tools/niminst/niminst".exe, VersionAsString])
  188. proc ensureCleanGit() =
  189. let (outp, status) = osproc.execCmdEx("git diff")
  190. if outp.len != 0:
  191. quit "Not a clean git repository; 'git diff' not empty!"
  192. if status != 0:
  193. quit "Not a clean git repository; 'git diff' returned non-zero!"
  194. proc xz(latest: bool; args: string) =
  195. ensureCleanGit()
  196. nimexec("cc -r $2 --var:version=$1 --var:mingw=none --main:compiler/nim.nim scripts compiler/installer.ini" %
  197. [VersionAsString, compileNimInst])
  198. exec("$# --var:version=$# --var:mingw=none --main:compiler/nim.nim xz compiler/installer.ini" %
  199. ["tools" / "niminst" / "niminst".exe, VersionAsString])
  200. proc buildTool(toolname, args: string) =
  201. nimexec("cc $# $#" % [args, toolname])
  202. copyFile(dest="bin" / splitFile(toolname).name.exe, source=toolname.exe)
  203. proc buildTools(args: string = "") =
  204. bundleNimsuggest(args)
  205. nimCompileFold("Compile nimgrep", "tools/nimgrep.nim",
  206. options = "-d:release " & args)
  207. when defined(windows): buildVccTool(args)
  208. bundleNimpretty(args)
  209. nimCompileFold("Compile testament", "testament/testament.nim", options = "-d:release " & args)
  210. # pre-packages a debug version of nim which can help in many cases investigate issuses
  211. # withouth having to rebuild compiler.
  212. # `-d:nimDebugUtils` only makes sense when temporarily editing/debugging compiler
  213. # `-d:debug` should be changed to a flag that doesn't require re-compiling nim
  214. # `--opt:speed` is a sensible default even for a debug build, it doesn't affect nim stacktraces
  215. nimCompileFold("Compile nim_dbg", "compiler/nim.nim", options =
  216. "--opt:speed --stacktrace -d:debug --stacktraceMsgs -d:nimCompilerStacktraceHints " & args,
  217. outputName = "nim_dbg")
  218. proc testTools(args: string = "") =
  219. nimCompileFold("Compile nimgrep", "tools/nimgrep.nim",
  220. options = "-d:release " & args)
  221. when defined(windows): buildVccTool(args)
  222. bundleNimpretty(args)
  223. nimCompileFold("Compile testament", "testament/testament.nim", options = "-d:release " & args)
  224. proc nsis(latest: bool; args: string) =
  225. bundleChecksums(latest)
  226. bundleNimbleExe(latest, args)
  227. bundleAtlasExe(latest, args)
  228. bundleNimsuggest(args)
  229. bundleWinTools(args)
  230. # make sure we have generated the niminst executables:
  231. buildTool("tools/niminst/niminst", args)
  232. #buildTool("tools/nimgrep", args)
  233. # produce 'nim_debug.exe':
  234. #exec "nim c compiler" / "nim.nim"
  235. #copyExe("compiler/nim".exe, "bin/nim_debug".exe)
  236. exec(("tools" / "niminst" / "niminst --var:version=$# --var:mingw=mingw$#" &
  237. " nsis compiler/installer.ini") % [VersionAsString, $(sizeof(pointer)*8)])
  238. proc geninstall(args="") =
  239. nimexec("cc -r $# --var:version=$# --var:mingw=none --main:compiler/nim.nim scripts compiler/installer.ini $#" %
  240. [compileNimInst, VersionAsString, args])
  241. proc install(args: string) =
  242. geninstall()
  243. exec("sh ./install.sh $#" % args)
  244. proc installDeps(dep: string, commit = "") =
  245. # the hashes/urls are version controlled here, so can be changed seamlessly
  246. # and tied to a nim release (mimicking git submodules)
  247. var commit = commit
  248. case dep
  249. of "tinyc":
  250. if commit.len == 0: commit = "916cc2f94818a8a382dd8d4b8420978816c1dfb3"
  251. cloneDependency(distDir, "https://github.com/timotheecour/nim-tinyc-archive", commit)
  252. of "libffi":
  253. # technically a nimble package, however to play nicely with --noNimblePath,
  254. # let's just clone it wholesale:
  255. if commit.len == 0: commit = "bb2bdaf1a29a4bff6fbd8ae4695877cbb3ec783e"
  256. cloneDependency(distDir, "https://github.com/Araq/libffi", commit)
  257. else: doAssert false, "unsupported: " & dep
  258. # xxx: also add linenoise, niminst etc, refs https://github.com/nim-lang/RFCs/issues/206
  259. # -------------- boot ---------------------------------------------------------
  260. proc findStartNim: string =
  261. # we try several things before giving up:
  262. # * nimExe
  263. # * bin/nim
  264. # * $PATH/nim
  265. # If these fail, we try to build nim with the "build.(sh|bat)" script.
  266. let (nim, ok) = findNimImpl()
  267. if ok: return nim
  268. when defined(posix):
  269. const buildScript = "build.sh"
  270. if fileExists(buildScript):
  271. if tryExec("./" & buildScript): return "bin" / nim
  272. else:
  273. const buildScript = "build.bat"
  274. if fileExists(buildScript):
  275. if tryExec(buildScript): return "bin" / nim
  276. echo("Found no nim compiler and every attempt to build one failed!")
  277. quit("FAILURE")
  278. proc thVersion(i: int): string =
  279. result = ("compiler" / "nim" & $i).exe
  280. template doUseCpp(): bool = getEnv("NIM_COMPILE_TO_CPP", "false") == "true"
  281. proc boot(args: string, skipIntegrityCheck: bool) =
  282. ## bootstrapping is a process that involves 3 steps:
  283. ## 1. use csourcesAny to produce nim1.exe. This nim1.exe is buggy but
  284. ## rock solid for building a Nim compiler. It shouldn't be used for anything else.
  285. ## 2. use nim1.exe to produce nim2.exe. nim2.exe is the one you really need.
  286. ## 3. We use nim2.exe to build nim3.exe. nim3.exe is equal to nim2.exe except for timestamps.
  287. ## This step ensures a minimum amount of quality. We know that nim2.exe can be used
  288. ## for Nim compiler development.
  289. var output = "compiler" / "nim".exe
  290. var finalDest = "bin" / "nim".exe
  291. # default to use the 'c' command:
  292. let useCpp = doUseCpp()
  293. let smartNimcache = (if "release" in args or "danger" in args: "nimcache/r_" else: "nimcache/d_") &
  294. hostOS & "_" & hostCPU
  295. if not dirExists("dist/checksums"):
  296. bundleChecksums(false)
  297. let usingLibFFI = "nimHasLibFFI" in args
  298. if usingLibFFI and not dirExists("dist/libffi"):
  299. installDeps("libffi")
  300. let nimStart = findStartNim().quoteShell()
  301. let times = 2 - ord(skipIntegrityCheck)
  302. for i in 0..times:
  303. let defaultCommand = if useCpp: "cpp" else: "c"
  304. let bootOptions = if args.len == 0 or args.startsWith("-"): defaultCommand else: ""
  305. echo "iteration: ", i+1
  306. var extraOption = ""
  307. var nimi = i.thVersion
  308. if i == 0:
  309. nimi = nimStart
  310. extraOption.add " --skipUserCfg --skipParentCfg -d:nimKochBootstrap"
  311. # --noNimblePath precludes nimble packages as dependencies to the compiler,
  312. # so libffi is not "installed as a nimble package"
  313. if usingLibFFI: extraOption.add " --path:./dist"
  314. # The configs are skipped for bootstrap
  315. # (1st iteration) to prevent newer flags from breaking bootstrap phase.
  316. let ret = execCmdEx(nimStart & " --version")
  317. doAssert ret.exitCode == 0
  318. let version = ret.output.splitLines[0]
  319. if version.startsWith "Nim Compiler Version 0.20.0":
  320. extraOption.add " --lib:lib" # see https://github.com/nim-lang/Nim/pull/14291
  321. # in order to use less memory, we split the build into two steps:
  322. # --compileOnly produces a $project.json file and does not run GCC/Clang.
  323. # jsonbuild then uses the $project.json file to build the Nim binary.
  324. exec "$# $# $# --nimcache:$# $# --noNimblePath --compileOnly compiler" / "nim.nim" %
  325. [nimi, bootOptions, extraOption, smartNimcache, args]
  326. exec "$# jsonscript --noNimblePath --nimcache:$# $# compiler" / "nim.nim" %
  327. [nimi, smartNimcache, args]
  328. if sameFileContent(output, i.thVersion):
  329. copyExe(output, finalDest)
  330. echo "executables are equal: SUCCESS!"
  331. return
  332. copyExe(output, (i+1).thVersion)
  333. copyExe(output, finalDest)
  334. when not defined(windows):
  335. if not skipIntegrityCheck:
  336. echo "[Warning] executables are still not equal"
  337. # -------------- clean --------------------------------------------------------
  338. const
  339. cleanExt = [
  340. ".ppu", ".o", ".obj", ".dcu", ".~pas", ".~inc", ".~dsk", ".~dpr",
  341. ".map", ".tds", ".err", ".bak", ".pyc", ".exe", ".rod", ".pdb", ".idb",
  342. ".idx", ".ilk"
  343. ]
  344. ignore = [
  345. ".bzrignore", "nim", "nim.exe", "koch", "koch.exe", ".gitignore"
  346. ]
  347. proc cleanAux(dir: string) =
  348. for kind, path in walkDir(dir):
  349. case kind
  350. of pcFile:
  351. var (_, name, ext) = splitFile(path)
  352. if ext == "" or cleanExt.contains(ext):
  353. if not ignore.contains(name):
  354. echo "removing: ", path
  355. removeFile(path)
  356. of pcDir:
  357. case splitPath(path).tail
  358. of "nimcache":
  359. echo "removing dir: ", path
  360. removeDir(path)
  361. of "dist", ".git", "icons": discard
  362. else: cleanAux(path)
  363. else: discard
  364. proc removePattern(pattern: string) =
  365. for f in walkFiles(pattern):
  366. echo "removing: ", f
  367. removeFile(f)
  368. proc clean(args: string) =
  369. removePattern("web/*.html")
  370. removePattern("doc/*.html")
  371. cleanAux(getCurrentDir())
  372. for kind, path in walkDir(getCurrentDir() / "build"):
  373. if kind == pcDir:
  374. echo "removing dir: ", path
  375. removeDir(path)
  376. # -------------- builds a release ---------------------------------------------
  377. proc winReleaseArch(arch: string) =
  378. doAssert arch in ["32", "64"]
  379. let cpu = if arch == "32": "i386" else: "amd64"
  380. template withMingw(path, body) =
  381. let prevPath = getEnv("PATH")
  382. putEnv("PATH", (if path.len > 0: path & PathSep else: "") & prevPath)
  383. try:
  384. body
  385. finally:
  386. putEnv("PATH", prevPath)
  387. withMingw r"..\mingw" & arch & r"\bin":
  388. # Rebuilding koch is necessary because it uses its pointer size to
  389. # determine which mingw link to put in the NSIS installer.
  390. inFold "winrelease koch":
  391. nimexec "c --cpu:$# koch" % cpu
  392. kochExecFold("winrelease boot", "boot -d:release --cpu:$#" % cpu)
  393. kochExecFold("winrelease zip", "zip -d:release")
  394. overwriteFile r"build\nim-$#.zip" % VersionAsString,
  395. r"web\upload\download\nim-$#_x$#.zip" % [VersionAsString, arch]
  396. proc winRelease*() =
  397. # Now used from "tools/winrelease" and not directly supported by koch
  398. # anymore!
  399. # Build -docs file:
  400. when true:
  401. inFold "winrelease buildDocs":
  402. buildDocs(gaCode)
  403. withDir "web/upload/" & VersionAsString:
  404. inFold "winrelease zipdocs":
  405. exec "7z a -tzip docs-$#.zip *.html" % VersionAsString
  406. overwriteFile "web/upload/$1/docs-$1.zip" % VersionAsString,
  407. "web/upload/download/docs-$1.zip" % VersionAsString
  408. when true:
  409. inFold "winrelease csource":
  410. csource("-d:danger")
  411. when sizeof(pointer) == 4:
  412. winReleaseArch "32"
  413. when sizeof(pointer) == 8:
  414. winReleaseArch "64"
  415. # -------------- tests --------------------------------------------------------
  416. template `|`(a, b): string = (if a.len > 0: a else: b)
  417. proc tests(args: string) =
  418. nimexec "cc --opt:speed testament/testament"
  419. var testCmd = quoteShell(getCurrentDir() / "testament/testament".exe)
  420. testCmd.add " " & quoteShell("--nim:" & findNim())
  421. testCmd.add " " & (args|"all")
  422. let success = tryExec testCmd
  423. if not success:
  424. quit("tests failed", QuitFailure)
  425. proc temp(args: string) =
  426. proc splitArgs(a: string): (string, string) =
  427. # every --options before the command (indicated by starting
  428. # with not a dash) is part of the bootArgs, the rest is part
  429. # of the programArgs:
  430. let args = os.parseCmdLine a
  431. result = ("", "")
  432. var i = 0
  433. while i < args.len and args[i][0] == '-':
  434. result[0].add " " & quoteShell(args[i])
  435. inc i
  436. while i < args.len:
  437. result[1].add " " & quoteShell(args[i])
  438. inc i
  439. if not dirExists("dist/checksums"):
  440. bundleChecksums(false)
  441. let d = getAppDir()
  442. let output = d / "compiler" / "nim".exe
  443. let finalDest = d / "bin" / "nim_temp".exe
  444. # 125 is the magic number to tell git bisect to skip the current commit.
  445. var (bootArgs, programArgs) = splitArgs(args)
  446. if "doc" notin programArgs and
  447. "threads" notin programArgs and
  448. "js" notin programArgs and "rst2html" notin programArgs:
  449. bootArgs = " -d:leanCompiler" & bootArgs
  450. let nimexec = findNim().quoteShell()
  451. exec(nimexec & " c -d:debug --debugger:native -d:nimBetterRun " & bootArgs & " " & (d / "compiler" / "nim"), 125)
  452. copyExe(output, finalDest)
  453. setCurrentDir(origDir)
  454. if programArgs.len > 0: exec(finalDest & " " & programArgs)
  455. proc xtemp(cmd: string) =
  456. let d = getAppDir()
  457. copyExe(d / "bin" / "nim".exe, d / "bin" / "nim_backup".exe)
  458. try:
  459. withDir(d):
  460. temp""
  461. copyExe(d / "bin" / "nim_temp".exe, d / "bin" / "nim".exe)
  462. exec(cmd)
  463. finally:
  464. copyExe(d / "bin" / "nim_backup".exe, d / "bin" / "nim".exe)
  465. proc icTest(args: string) =
  466. temp("")
  467. let inp = os.parseCmdLine(args)[0]
  468. let content = readFile(inp)
  469. let nimExe = getAppDir() / "bin" / "nim_temp".exe
  470. var i = 0
  471. for fragment in content.split("#!EDIT!#"):
  472. let file = inp.replace(".nim", "_temp.nim")
  473. writeFile(file, fragment)
  474. var cmd = nimExe & " cpp --ic:on -d:nimIcIntegrityChecks --listcmd "
  475. if i == 0:
  476. cmd.add "-f "
  477. cmd.add quoteShell(file)
  478. exec(cmd)
  479. inc i
  480. proc buildDrNim(args: string) =
  481. if not dirExists("dist/nimz3"):
  482. exec("git clone https://github.com/zevv/nimz3.git dist/nimz3")
  483. when defined(windows):
  484. if not dirExists("dist/dlls"):
  485. exec("git clone -q https://github.com/nim-lang/dlls.git dist/dlls")
  486. copyExe("dist/dlls/libz3.dll", "bin/libz3.dll")
  487. execFold("build drnim", "nim c -o:$1 $2 drnim/drnim" % ["bin/drnim".exe, args])
  488. else:
  489. if not dirExists("dist/z3"):
  490. exec("git clone -q https://github.com/Z3Prover/z3.git dist/z3")
  491. withDir("dist/z3"):
  492. exec("git fetch")
  493. exec("git checkout " & Z3StableCommit)
  494. createDir("build")
  495. withDir("build"):
  496. exec("""cmake -DZ3_BUILD_LIBZ3_SHARED=FALSE -G "Unix Makefiles" ../""")
  497. exec("make -j4")
  498. execFold("build drnim", "nim cpp --dynlibOverride=libz3 -o:$1 $2 drnim/drnim" % ["bin/drnim".exe, args])
  499. # always run the tests for now:
  500. exec("testament/testament".exe & " --nim:" & "drnim".exe & " pat drnim/tests")
  501. proc hostInfo(): string =
  502. "hostOS: $1, hostCPU: $2, int: $3, float: $4, cpuEndian: $5, cwd: $6" %
  503. [hostOS, hostCPU, $int.sizeof, $float.sizeof, $cpuEndian, getCurrentDir()]
  504. proc runCI(cmd: string) =
  505. doAssert cmd.len == 0, cmd # avoid silently ignoring
  506. echo "runCI: ", cmd
  507. echo hostInfo()
  508. # boot without -d:nimHasLibFFI to make sure this still works
  509. # `--lib:lib` is needed for bootstrap on openbsd, for reasons described in
  510. # https://github.com/nim-lang/Nim/pull/14291 (`getAppFilename` bugsfor older nim on openbsd).
  511. kochExecFold("Boot Nim ORC", "boot -d:release -d:nimStrictMode --lib:lib")
  512. when false: # debugging: when you need to run only 1 test in CI, use something like this:
  513. execFold("debugging test", "nim r tests/stdlib/tosproc.nim")
  514. doAssert false, "debugging only"
  515. ## build nimble early on to enable remainder to depend on it if needed
  516. kochExecFold("Build Nimble", "nimble")
  517. execFold("Install smtp", "nimble install smtp -y")
  518. let batchParam = "--batch:$1" % "NIM_TESTAMENT_BATCH".getEnv("_")
  519. if getEnv("NIM_TEST_PACKAGES", "0") == "1":
  520. nimCompileFold("Compile testament", "testament/testament.nim", options = "-d:release")
  521. execFold("Test selected Nimble packages", "testament $# pcat nimble-packages" % batchParam)
  522. else:
  523. testTools()
  524. for a in "zip opengl sdl1 jester@#head".split:
  525. let buildDeps = "build"/"deps" # xxx factor pending https://github.com/timotheecour/Nim/issues/616
  526. # if this gives `Additional info: "build/deps" [OSError]`, make sure nimble is >= v0.12.0,
  527. # otherwise `absolutePath` is needed, refs https://github.com/nim-lang/nimble/issues/901
  528. execFold("", "nimble install -y --nimbleDir:$# $#" % [buildDeps.quoteShell, a])
  529. ## run tests
  530. execFold("Test nimscript", "nim e tests/test_nimscript.nims")
  531. when defined(windows):
  532. execFold("Compile tester", "nim c --usenimcache -d:nimCoroutines --os:genode -d:posix --compileOnly testament/testament")
  533. # main bottleneck here
  534. # xxx: even though this is the main bottleneck, we could speedup the rest via batching with `--batch`.
  535. # BUG: with initOptParser, `--batch:'' all` interprets `all` as the argument of --batch, pending bug #14343
  536. execFold("Run tester", "nim c -r --putenv:NIM_TESTAMENT_REMOTE_NETWORKING:1 -d:nimStrictMode testament/testament $# all -d:nimCoroutines" % batchParam)
  537. block: # nimHasLibFFI:
  538. when defined(posix): # windows can be handled in future PR's
  539. installDeps("libffi")
  540. const nimFFI = "bin/nim.ctffi"
  541. # no need to bootstrap with koch boot (would be slower)
  542. let backend = if doUseCpp(): "cpp" else: "c"
  543. execFold("build with -d:nimHasLibFFI", "nim $1 -d:release --noNimblePath -d:nimHasLibFFI --path:./dist -o:$2 compiler/nim.nim" % [backend, nimFFI])
  544. execFold("test with -d:nimHasLibFFI", "$1 $2 -r testament/testament --nim:$1 r tests/misc/trunner.nim -d:nimTrunnerFfi" % [nimFFI, backend])
  545. execFold("Run nimdoc tests", "nim r nimdoc/tester")
  546. execFold("Run rst2html tests", "nim r nimdoc/rsttester")
  547. execFold("Run nimpretty tests", "nim r nimpretty/tester.nim")
  548. when defined(posix):
  549. # refs #18385, build with -d:release instead of -d:danger for testing
  550. # We could also skip building nimsuggest in buildTools, or build it with -d:release
  551. # in bundleNimsuggest depending on some environment variable when we are in CI. One advantage
  552. # of rebuilding is this won't affect bin/nimsuggest when running runCI locally
  553. execFold("build nimsuggest_testing", "nim c -o:bin/nimsuggest_testing -d:release nimsuggest/nimsuggest")
  554. execFold("Run nimsuggest tests", "nim r nimsuggest/tester")
  555. kochExecFold("Testing booting in refc", "boot -d:release --mm:refc -d:nimStrictMode --lib:lib")
  556. proc testUnixInstall(cmdLineRest: string) =
  557. csource("-d:danger" & cmdLineRest)
  558. xz(false, cmdLineRest)
  559. let oldCurrentDir = getCurrentDir()
  560. try:
  561. let destDir = getTempDir()
  562. copyFile("build/nim-$1.tar.xz" % VersionAsString,
  563. destDir / "nim-$1.tar.xz" % VersionAsString)
  564. setCurrentDir(destDir)
  565. execCleanPath("tar -xJf nim-$1.tar.xz" % VersionAsString)
  566. setCurrentDir("nim-$1" % VersionAsString)
  567. execCleanPath("sh build.sh")
  568. # first test: try if './bin/nim --version' outputs something sane:
  569. let output = execProcess("./bin/nim --version").splitLines
  570. if output.len > 0 and output[0].contains(VersionAsString):
  571. echo "Version check: success"
  572. execCleanPath("./bin/nim c koch.nim")
  573. execCleanPath("./koch boot -d:release", destDir / "bin")
  574. # check the docs build:
  575. execCleanPath("./koch docs", destDir / "bin")
  576. # check nimble builds:
  577. execCleanPath("./koch tools")
  578. # check the tests work:
  579. putEnv("NIM_EXE_NOT_IN_PATH", "NOT_IN_PATH")
  580. execCleanPath("./koch tests --nim:bin/nim cat megatest", destDir / "bin")
  581. else:
  582. echo "Version check: failure"
  583. finally:
  584. setCurrentDir oldCurrentDir
  585. proc valgrind(cmd: string) =
  586. # somewhat hacky: '=' sign means "pass to valgrind" else "pass to Nim"
  587. let args = parseCmdLine(cmd)
  588. var nimcmd = ""
  589. var valcmd = ""
  590. for i, a in args:
  591. if i == args.len-1:
  592. # last element is the filename:
  593. valcmd.add ' '
  594. valcmd.add changeFileExt(a, ExeExt)
  595. nimcmd.add ' '
  596. nimcmd.add a
  597. elif '=' in a:
  598. valcmd.add ' '
  599. valcmd.add a
  600. else:
  601. nimcmd.add ' '
  602. nimcmd.add a
  603. exec("nim c" & nimcmd)
  604. let supp = getAppDir() / "tools" / "nimgrind.supp"
  605. exec("valgrind --suppressions=" & supp & valcmd)
  606. proc showHelp(success: bool) =
  607. quit(HelpText % [VersionAsString & spaces(44-len(VersionAsString)),
  608. CompileDate, CompileTime], if success: QuitSuccess else: QuitFailure)
  609. proc branchDone() =
  610. let thisBranch = execProcess("git symbolic-ref --short HEAD").strip()
  611. if thisBranch != "devel" and thisBranch != "":
  612. exec("git checkout devel")
  613. exec("git branch -D " & thisBranch)
  614. exec("git pull --rebase")
  615. when isMainModule:
  616. var op = initOptParser()
  617. var
  618. latest = false
  619. localDocsOnly = false
  620. localDocsOut = ""
  621. skipIntegrityCheck = false
  622. while true:
  623. op.next()
  624. case op.kind
  625. of cmdLongOption, cmdShortOption:
  626. case normalize(op.key)
  627. of "help", "h": showHelp(success = true)
  628. of "latest": latest = true
  629. of "stable": latest = false
  630. of "nim": nimExe = op.val.absolutePath # absolute so still works with changeDir
  631. of "localdocs":
  632. localDocsOnly = true
  633. if op.val.len > 0:
  634. localDocsOut = op.val.absolutePath
  635. of "skipintegritycheck":
  636. skipIntegrityCheck = true
  637. else: showHelp(success = false)
  638. of cmdArgument:
  639. case normalize(op.key)
  640. of "boot": boot(op.cmdLineRest, skipIntegrityCheck)
  641. of "clean": clean(op.cmdLineRest)
  642. of "doc", "docs": buildDocs(op.cmdLineRest & " --d:nimPreviewSlimSystem " & paCode, localDocsOnly, localDocsOut)
  643. of "doc0", "docs0":
  644. # undocumented command for Araq-the-merciful:
  645. buildDocs(op.cmdLineRest & gaCode)
  646. of "pdf": buildPdfDoc(op.cmdLineRest, "doc/pdf")
  647. of "csource", "csources": csource(op.cmdLineRest)
  648. of "zip": zip(latest, op.cmdLineRest)
  649. of "xz": xz(latest, op.cmdLineRest)
  650. of "nsis": nsis(latest, op.cmdLineRest)
  651. of "geninstall": geninstall(op.cmdLineRest)
  652. of "distrohelper": geninstall()
  653. of "install": install(op.cmdLineRest)
  654. of "testinstall": testUnixInstall(op.cmdLineRest)
  655. of "installdeps": installDeps(op.cmdLineRest)
  656. of "runci": runCI(op.cmdLineRest)
  657. of "test", "tests": tests(op.cmdLineRest)
  658. of "temp": temp(op.cmdLineRest)
  659. of "xtemp": xtemp(op.cmdLineRest)
  660. of "wintools": bundleWinTools(op.cmdLineRest)
  661. of "nimble": bundleNimbleExe(latest, op.cmdLineRest)
  662. of "atlas": bundleAtlasExe(latest, op.cmdLineRest)
  663. of "nimsuggest": bundleNimsuggest(op.cmdLineRest)
  664. # toolsNoNimble is kept for backward compatibility with build scripts
  665. of "toolsnonimble", "toolsnoexternal":
  666. buildTools(op.cmdLineRest)
  667. of "tools":
  668. buildTools(op.cmdLineRest)
  669. bundleNimbleExe(latest, op.cmdLineRest)
  670. bundleAtlasExe(latest, op.cmdLineRest)
  671. of "checksums":
  672. bundleChecksums(latest)
  673. of "pushcsource":
  674. quit "use this instead: https://github.com/nim-lang/csources_v1/blob/master/push_c_code.nim"
  675. of "valgrind": valgrind(op.cmdLineRest)
  676. of "c2nim": bundleC2nim(op.cmdLineRest)
  677. of "drnim": buildDrNim(op.cmdLineRest)
  678. of "fusion":
  679. let suffix = if latest: HeadHash else: FusionStableHash
  680. exec("nimble install -y fusion@$#" % suffix)
  681. of "ic": icTest(op.cmdLineRest)
  682. of "branchdone": branchDone()
  683. else: showHelp(success = false)
  684. break
  685. of cmdEnd:
  686. showHelp(success = false)