No description
Find a file
2024-10-18 09:03:27 +02:00
src Use the template from utils.nim 2023-03-22 14:51:26 +11:00
README.md Update README.md 2024-10-18 09:03:27 +02:00
zigcc.nimble Update zigcc.nimble; inc version 2023-03-22 22:06:08 +01:00

installs

  • zigcc
  • zigcpp

to your nimble dir. Both are wrappers for calling zig:

  • zig cc
  • zig 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