aboutsummaryrefslogtreecommitdiff
path: root/doc/targets.md
AgeCommit message (Collapse)Author
2019-02-06doc/targets.md has moved to the github wikiAndrew Kelley
https://github.com/ziglang/zig/wiki/How-to-Add-Support-For-More-Targets
2017-09-30update C headers to clang 5.0.0Andrew Kelley
2017-08-20move docs to websiteAndrew Kelley
2016-03-01rewrite how importing worksAndrew Kelley
* Introduce the concept of packages. Closes #3 * Add support for error notes. * Introduce `@import` and `@c_import` builtin functions and remove the `import` and `c_import` top level declarations. * Introduce the `use` top level declaration. * Add `--check-unused` parameter to perform semantic analysis and codegen on all top level declarations, not just exported ones and ones referenced by exported ones. * Delete the root export node and add `--library` argument.
2016-02-12std: delete malloc and freeAndrew Kelley
later we'll add a full featured allocator instead of this
2016-01-31parseh handles typedef void betterAndrew Kelley
and introduce c_long_double type
2016-01-28add parseh testsAndrew Kelley
2016-01-27move AST rendering code to separate fileAndrew Kelley
2016-01-25add the C integer typesAndrew Kelley
2015-12-22codegen: fix struct pointer field accessAndrew Kelley