General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.
Go to file
Robin Voetter 62f4a6b4d8
Merge pull request #21937 from Snektron/spirv-vulkan-ptrs
spirv: miscellaneous vulkan + zig stuff
2024-11-09 21:50:33 +01:00
.github no code owners 2024-10-10 11:35:49 -07:00
ci ci: Update to QEMU 9.1.0 in x86_64-linux scripts. 2024-10-18 00:55:20 +02:00
cmake add missing clang and llvm library listings 2024-09-19 18:20:21 -07:00
doc typo: will inlined -> will be inlined 2024-10-29 17:52:55 -07:00
lib add storage_buffer address space 2024-11-08 20:43:57 +01:00
src Merge pull request #21937 from Snektron/spirv-vulkan-ptrs 2024-11-09 21:50:33 +01:00
stage1 zig.h: Improve portability of zig_*_windows_teb() helpers. 2024-11-04 11:59:38 +01:00
test Sema: fix wording in error message 2024-11-09 20:21:32 +00:00
tools Merge pull request #21843 from alexrp/callconv-followup 2024-11-03 14:27:09 +01: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 compiler_rt does not need a build_options module 2024-09-19 18:20:22 -07:00
build.zig build: increase max_rss to 7.8G 2024-11-05 10:03:04 -08:00
build.zig.zon Promote linker test cases to packages 2024-04-07 16:05:54 -07:00
CMakeLists.txt std.Target: Rename amdgpu module to amdgcn. 2024-11-02 10:44:14 +01:00
LICENSE LICENSE: copyright notices do not need years 2023-07-23 15:46:06 -07:00
README.md doc: Bump LLVM version in README 2024-09-19 23:06:09 -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 == 19.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 this case, LLVM is not needed!

Furthermore, a compiler built this way provides an LLVM backend that produces bitcode files, which may be compiled into object files via a system Clang package. This can be used to produce system packages of Zig applications without the Zig package dependency on LLVM.

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.