Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
45 lignes
1.3 KiB
45 lignes
1.3 KiB
from macros import error |
|
|
|
type Compiler = enum gcc = "gcc", clang = "clang" |
|
|
|
switch "styleCheck", "hint" |
|
|
|
proc setCompiler(s: string, compiler = gcc, cpp = false) = |
|
let c = findExe s |
|
let cpp = (if cpp: ".cpp" else: "") |
|
if c.len == 0: |
|
error s & " binary wasn't found in $PATH." |
|
switch $compiler & cpp & ".exe", c |
|
switch $compiler & cpp & ".linkerexe", c |
|
|
|
when defined(wasm): |
|
let linkerOptions = "-nostdlib -Wl,--no-entry,--allow-undefined,--gc-sections,--strip-all" |
|
switch "o", projectName() & ".wasm" |
|
switch "cpu", "i386" |
|
switch "cc", "clang" |
|
switch "d", "release" |
|
switch "opt", "size" |
|
switch "stackTrace", "off" |
|
switch "nomain" |
|
switch "d", "nimNoLibc" |
|
switch "d", "noSignalHandler" |
|
switch "passC", "--target=wasm32-unknown-unknown-wasm" |
|
switch "passC", "-mexception-handling" |
|
switch "passC", "-nostdlib" |
|
switch "passL", "--target=wasm32-unknown-unknown-wasm" |
|
switch "clang.options.linker", linkerOptions |
|
switch "clang.cpp.options.linker", linkerOptions |
|
|
|
when defined(musl): |
|
setCompiler "x86_64-linux-musl-gcc" |
|
switch "passL", "-static" |
|
|
|
when defined(release): |
|
switch "nimcache", "/tmp/nim/" & projectName() & "_r" |
|
switch "passC", "-flto" |
|
switch "passL", "-s" |
|
else: |
|
switch "nimcache", "/tmp/nim/" & projectName() & "_d" |
|
|
|
when defined(hotcodereloading): |
|
switch "nimcache", "nimcache"
|
|
|