mirror of
https://github.com/enthus1ast/zigcc
synced 2026-01-09 17:21:17 +00:00
No description
| src | ||
| README.md | ||
| zigcc.nimble | ||
installs
zigcczigcpp
to your nimble dir. Both are wrappers for calling zig:
zig cczig c++
also see this https://stackoverflow.com/questions/73345643/how-to-use-the-zig-compiler-in-order-to-compile-nim-code
Installation
nimble install zigcc
windows
nim c --cc:clang --clang.exe="zigcc.cmd" --clang.linkerexe="zigcc.cmd" --forceBuild:on --opt:speed hello.nim
linux and rest
nim c --cc:clang --clang.exe="zigcc" --clang.linkerexe="zigcc" --forceBuild:on --opt:speed hello.nim
cross compilation example
build linux executables from windows:
nim c --cc:clang --clang.exe="zigcc.cmd" --clang.linkerexe="zigcc.cmd" --passc:"-target x86_64-linux-gnu" --passl:"-target x86_64-linux-gnu" --forceBuild:on --os:linux --opt:speed --out:hellolinux hello.nim
build windows executables from linux:
nim c --cc:clang --clang.exe="zigcc" --clang.linkerexe="zigcc" --passc:"-target x86_64-windows" --passl:"-target x86_64-windows" --forceBuild:on --os:windows --opt:speed foo.nim