General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.
Go to file
2024-08-12 18:00:34 -07:00
.github CI: update macOS runner to 12 2024-07-02 02:04:10 -04:00
ci update CI tarballs to LLVM 18.1.8 2024-08-12 18:00:34 -07:00
cmake cmake/findllvm: fix incorrect lib dir setup for zig2 2024-07-06 14:29:03 -04:00
doc fix C type corresponding to f80 2024-08-12 00:25:16 -07:00
lib std.os.linux: Add clone() implementation for mips64. (#21038) 2024-08-12 16:09:52 -07:00
src all: Handle spirv in addition to spirv(32,64) where applicable. 2024-08-12 16:08:28 -07:00
stage1 zig.h: fixup pointer atomic load definitions 2024-07-26 10:42:10 -04:00
test std.Target: Rename glsl450 Arch tag to opengl. 2024-08-12 08:59:47 +02:00
tools fix(fmt): remove additional trailing newline 2024-08-09 13:07:54 -07:00
.gitattributes Sync Aro sources (#19199) 2024-03-06 14:17:41 -05:00
.gitignore update .gitignore to account for .zig-cache rename 2024-05-29 13:37:23 -07:00
.mailmap update .mailmap 2024-04-19 13:16:09 -07:00
bootstrap.c remove deprecated --mod CLI now that a zig1.wasm update happened 2024-07-26 05:07:18 -07:00
build.zig build: bump max_rss since we link MachO in parallel now 2024-07-22 12:06:02 +02:00
build.zig.zon Promote linker test cases to packages 2024-04-07 16:05:54 -07:00
CMakeLists.txt std: add loongarch64 support (#20915) 2024-08-09 00:30:57 +00:00
LICENSE LICENSE: copyright notices do not need years 2023-07-23 15:46:06 -07:00
README.md README: update how std lib docs are found in a release build 2024-08-07 00:48:32 -07:00

ZIG

A general-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.

https://ziglang.org/

Documentation

If you are looking at this README file in a source tree, please refer to the Release Notes, Language Reference, or Standard Library Documentation corresponding to the version of Zig that you are using by following the appropriate link on the download page.

Otherwise, you're looking at a release of Zig, so you can find the language reference at doc/langref.html, and the standard library documentation by running zig std, which will open a browser tab.

Installation

A Zig installation is composed of two things:

  1. The Zig executable
  2. The lib/ directory

At runtime, the executable searches up the file system for the lib/ directory, relative to itself:

  • lib/
  • lib/zig/
  • ../lib/
  • ../lib/zig/
  • (and so on)

In other words, you can unpack a release of Zig anywhere, and then begin using it immediately. There is no need to install it globally, although this mechanism supports that use case too (i.e. /usr/bin/zig and /usr/lib/zig/).

Building from Source

Ensure you have the required dependencies:

  • CMake >= 3.15
  • System C/C++ Toolchain
  • LLVM, Clang, LLD development libraries == 18.x

Then it is the standard CMake build process:

mkdir build
cd build
cmake ..
make install

For more options, tips, and troubleshooting, please see the Building Zig From Source page on the wiki.

Building from Source without LLVM

In this case, the only system dependency is a C compiler.

cc -o bootstrap bootstrap.c
./bootstrap

This produces a zig2 executable in the current working directory. This is a "stage2" build of the compiler, without LLVM extensions, and is therefore lacking these features:

However, a compiler built this way does provide a C backend, which may be useful for creating system packages of Zig projects using the system C toolchain. In such case, LLVM is not needed!

Contributing

Donate monthly.

Zig is Free and Open Source Software. We welcome bug reports and patches from everyone. However, keep in mind that Zig governance is BDFN (Benevolent Dictator For Now) which means that Andrew Kelley has final say on the design and implementation of everything.

One of the best ways you can contribute to Zig is to start using it for an open-source personal project.

This leads to discovering bugs and helps flesh out use cases, which lead to further design iterations of Zig. Importantly, each issue found this way comes with real world motivations, making it straightforward to explain the reasoning behind proposals and feature requests.

You will be taken much more seriously on the issue tracker if you have a personal project that uses Zig.

The issue label Contributor Friendly exists to help you find issues that are limited in scope and/or knowledge of Zig internals.

Please note that issues labeled Proposal but do not also have the Accepted label are still under consideration, and efforts to implement such a proposal have a high risk of being wasted. If you are interested in a proposal which is still under consideration, please express your interest in the issue tracker, providing extra insights and considerations that others have not yet expressed. The most highly regarded argument in such a discussion is a real world use case.

For more tips, please see the Contributing page on the wiki.

Community

The Zig community is decentralized. Anyone is free to start and maintain their own space for Zig users to gather. There is no concept of "official" or "unofficial". Each gathering place has its own moderators and rules. Users are encouraged to be aware of the social structures of the spaces they inhabit, and work purposefully to facilitate spaces that align with their values.

Please see the Community wiki page for a public listing of social spaces.