Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/enthus1ast/zigcc

wraps `zig cc` to be able to be called by the nim compiler
https://github.com/enthus1ast/zigcc

Last synced: about 2 months ago
JSON representation

wraps `zig cc` to be able to be called by the nim compiler

Awesome Lists containing this project

README

        

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
```