zig/README.md

76 lines
2.4 KiB
Markdown
Raw Normal View History

2018-05-13 13:07:55 +08:00
![ZIG](https://ziglang.org/zig-logo.svg)
2015-08-06 08:44:05 +08:00
2019-12-31 07:16:40 +08:00
A general-purpose programming language and toolchain for maintaining
**robust**, **optimal**, and **reusable** software.
2015-08-06 08:44:05 +08:00
## Resources
* [Introduction](https://ziglang.org/#Introduction)
* [Download & Documentation](https://ziglang.org/download)
* [Community](https://github.com/ziglang/zig/wiki/Community)
2019-05-29 02:53:01 +08:00
* [Contributing](https://github.com/ziglang/zig/blob/master/CONTRIBUTING.md)
* [Frequently Asked Questions](https://github.com/ziglang/zig/wiki/FAQ)
2019-08-12 04:09:23 +08:00
* [Community Projects](https://github.com/ziglang/zig/wiki/Community-Projects)
2016-11-24 15:44:03 +08:00
## Building from Source
2015-12-07 12:55:28 +08:00
2018-11-06 22:55:54 +08: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 23:06:15 +08:00
Note that you can
[download a binary of master branch](https://ziglang.org/download/#release-master).
### Stage 1: Build Zig from C++ Source Code
#### Dependencies
2017-09-26 00:51:26 +08:00
##### POSIX
2016-02-13 05:07:12 +08:00
* cmake >= 2.8.5
2018-01-16 11:17:22 +08:00
* gcc >= 5.0.0 or clang >= 3.6.0
2019-10-02 14:11:46 +08:00
* LLVM, Clang, LLD development libraries == 10.x, compiled with the same gcc or clang version above
- 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).
2017-09-26 00:51:26 +08:00
##### Windows
* cmake >= 3.15.3
* Microsoft Visual Studio. Supported versions:
- 2015 (version 14)
- 2017 (version 15.8)
- 2019 (version 16)
2019-10-02 14:11:46 +08:00
* LLVM, Clang, LLD development libraries == 10.x
- 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-26 00:51:26 +08:00
#### Instructions
2015-12-11 06:34:38 +08:00
2018-01-16 11:17:22 +08:00
##### POSIX
2015-12-07 12:55:28 +08:00
```
mkdir build
cd build
cmake ..
2015-12-11 06:34:38 +08:00
make install
2015-12-07 12:55:28 +08:00
```
2015-12-11 06:34:38 +08:00
Need help? [Troubleshooting Build Issues](https://github.com/ziglang/zig/wiki/Troubleshooting-Build-Issues)
##### MacOS
2017-09-18 22:47:37 +08:00
```
brew install cmake llvm
brew outdated llvm || brew upgrade llvm
2017-09-18 22:47:37 +08:00
mkdir build
cd build
cmake .. -DCMAKE_PREFIX_PATH=$(brew --prefix llvm)
2017-09-18 22:47:37 +08:00
make install
```
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)
Please help upstream LLVM and Homebrew solve this issue, there is nothing Zig
can do about it. See that issue for a workaround you can do in the meantime.
##### Windows
See https://github.com/ziglang/zig/wiki/Building-Zig-on-Windows