2018-05-13 06:07:55 +01:00
![ZIG ](https://ziglang.org/zig-logo.svg )
2015-08-06 01:44:05 +01:00
2019-12-30 23:16:40 +00:00
A general-purpose programming language and toolchain for maintaining
**robust**, **optimal** , and **reusable** software.
2015-08-06 01:44:05 +01:00
2019-05-03 19:48:56 +01:00
## Resources
2016-02-10 05:31:49 +00:00
2019-05-03 19:48:56 +01:00
* [Introduction ](https://ziglang.org/#Introduction )
* [Download & Documentation ](https://ziglang.org/download )
* [Community ](https://github.com/ziglang/zig/wiki/Community )
2019-05-28 19:53:01 +01:00
* [Contributing ](https://github.com/ziglang/zig/blob/master/CONTRIBUTING.md )
2019-07-02 20:21:03 +01:00
* [Frequently Asked Questions ](https://github.com/ziglang/zig/wiki/FAQ )
2019-08-11 21:09:23 +01:00
* [Community Projects ](https://github.com/ziglang/zig/wiki/Community-Projects )
2016-11-24 07:44:03 +00:00
2019-04-29 23:25:27 +01:00
## Building from Source
2015-12-07 04:55:28 +00:00
2018-11-06 14:55:54 +00:00
[![Build Status ](https://dev.azure.com/ziglang/zig/_apis/build/status/ziglang.zig?branchName=master )](https://dev.azure.com/ziglang/zig/_build/latest?definitionId=1& branchName=master)
2017-04-21 16:06:15 +01:00
2018-11-01 19:21:41 +00:00
Note that you can
2020-08-31 22:41:01 +01:00
[download a binary of master branch ](https://ziglang.org/download/#release-master ) or
[install Zig from a package manager ](https://github.com/ziglang/zig/wiki/Install-Zig-from-a-Package-Manager ).
2018-11-01 19:21:41 +00:00
2017-12-23 05:29:39 +00:00
### Stage 1: Build Zig from C++ Source Code
2016-01-26 04:56:29 +00:00
2017-12-23 05:29:39 +00:00
#### Dependencies
2016-09-05 21:36:21 +01:00
2017-09-25 17:51:26 +01:00
##### POSIX
2016-02-12 21:07:12 +00:00
* cmake >= 2.8.5
2018-01-16 03:17:22 +00:00
* gcc >= 5.0.0 or clang >= 3.6.0
2019-10-02 07:11:46 +01:00
* LLVM, Clang, LLD development libraries == 10.x, compiled with the same gcc or clang version above
2019-04-29 23:25:27 +01:00
- Use the system package manager, or [build from source ](https://github.com/ziglang/zig/wiki/How-to-build-LLVM,-libclang,-and-liblld-from-source#posix ).
2016-09-05 21:36:21 +01:00
2017-09-25 17:51:26 +01:00
##### Windows
2019-09-20 17:54:21 +01:00
* cmake >= 3.15.3
* Microsoft Visual Studio. Supported versions:
- 2015 (version 14)
- 2017 (version 15.8)
- 2019 (version 16)
2019-10-02 07:11:46 +01:00
* LLVM, Clang, LLD development libraries == 10.x
2019-09-20 17:54:21 +01:00
- Use the [pre-built binaries ](https://github.com/ziglang/zig/wiki/Building-Zig-on-Windows ) or [build from source ](https://github.com/ziglang/zig/wiki/How-to-build-LLVM,-libclang,-and-liblld-from-source#windows ).
2017-09-25 17:51:26 +01:00
2017-12-23 05:29:39 +00:00
#### Instructions
2015-12-10 22:34:38 +00:00
2018-01-16 03:17:22 +00:00
##### POSIX
2015-12-07 04:55:28 +00:00
```
mkdir build
cd build
2018-04-11 01:57:37 +01:00
cmake ..
2015-12-10 22:34:38 +00:00
make install
2015-12-07 04:55:28 +00:00
```
2015-12-10 22:34:38 +00:00
2020-06-26 20:10:30 +01:00
Need help? [Troubleshooting Build Issues ](https://github.com/ziglang/zig/wiki/Troubleshooting-Build-Issues )
2017-12-23 05:29:39 +00:00
##### MacOS
2017-09-18 15:47:37 +01:00
```
2020-03-31 02:59:43 +01:00
brew install cmake llvm
brew outdated llvm || brew upgrade llvm
2017-09-18 15:47:37 +01:00
mkdir build
cd build
2020-04-17 23:41:21 +01:00
cmake .. -DCMAKE_PREFIX_PATH=$(brew --prefix llvm)
2020-07-03 05:43:05 +01:00
make install
2017-09-18 15:47:37 +01:00
```
2020-04-17 23:41:21 +01:00
You will now run into this issue:
[homebrew and llvm 10 packages in apt.llvm.org are broken with undefined reference to getPollyPluginInfo ](https://github.com/ziglang/zig/issues/4799 )
2020-07-03 05:43:05 +01:00
or
[error: unable to create target: 'Unable to find target for this triple (no targets are registered)' ](https://github.com/ziglang/zig/issues/5055 ),
in which case try `-DZIG_WORKAROUND_4799=ON`
2020-04-17 23:41:21 +01:00
2020-07-03 05:43:05 +01:00
Hopefully this will be fixed upstream with LLVM 10.0.1.
2020-04-17 23:41:21 +01:00
2017-12-23 05:29:39 +00:00
##### Windows
2017-10-10 23:04:02 +01:00
2018-05-25 02:27:44 +01:00
See https://github.com/ziglang/zig/wiki/Building-Zig-on-Windows
2020-09-11 19:30:21 +01:00
## License
The ultimate goal of the Zig project is to serve users. As a first-order
effect, this means users of the compiler, helping programmers to write better
code. Even more important, however, are the end users.
Zig is intended to be used to help end users accomplish their goals. For
example, it would be inappropriate and offensive to use Zig to implement
[dark patterns ](https://en.wikipedia.org/wiki/Dark_pattern ) and it would be
shameful to utilize Zig to exploit people instead of benefit them.
However, such problems are best solved with social norms, not with software
licenses. Any attempt to complicate the software license of Zig would risk
compromising the value Zig provides to users.
Therefore, Zig is available under the MIT (Expat) License, and comes with a
humble request: use it to make software better serve the needs of end users.