aboutsummaryrefslogtreecommitdiff
path: root/lib/include/zig.h
AgeCommit message (Collapse)Author
2022-11-13C backend: improve ergonomics of zig.h a little bitAndrew Kelley
Partially implements #13528. Enough to unblock the wasi-bootstrap branch.
2022-11-02cbe: use wrapping for left shiftsJacob Young
2022-11-02cbe: fix externJacob Young
2022-11-01cbe: fix threadlocalJacob Young
2022-10-31cbe: improve support for non-native float typesJacob Young
* Fix _start on aarch64. * Add fallbacks when a float type is unsupported. Fixes #13357
2022-10-29cbe: finish partial zig_noreturn rewriteJacob Young
2022-10-25cbe: fix floating point builtinsJacob Young
2022-10-25cbe: improve floating point type supportJacob Young
2022-10-25cbe: add support for all float literals typesJacob Young
2022-10-25cbe: update test casesJacob Young
2022-10-25cbe: implement packed structsJacob Young
Sometimes you have to break a test to make progress :)
2022-10-25cbe: implement 128-bit and fix smaller integer builtinsJacob Young
2022-10-25cbe: get enough things working to support basic programsJacob Young
* Enable advanced start support. * Enable advanced test_runner support. * Zig Language Reference's Hello World now works.
2022-10-25cbe: fix atomicsJacob Young
2022-10-25cbe: fix infinite recursion on recursive typesJacob Young
2022-10-25cbe: cleanup code and fix cases test breakageJacob Young
2022-07-27move zig.h to become an installation fileAndrew Kelley
Now instead of zig.h being baked into the compiler binary, it is a header file distributed along with all the other header files distributed with Zig. Closes #11643