authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2016-02-15 15:51:10-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2016-02-15 15:51:10-07:00
logfecbc91a6b6fec655f4fb0c9b6c6fb71f8989f39
tree212a4f960188a44295860c8eb79be1f072fc621f
parentbaf889c87913b08f444291242e0c170b1aad14f4

update readme


1 files changed, 6 insertions(+), 4 deletions(-)

README.md+6-4
......@@ -40,8 +40,12 @@ compromises backward compatibility.
4040 * Release mode produces heavily optimized code. What other projects call
4141 "Link Time Optimization" Zig does automatically.
4242 * Mark functions as tests and automatically run them with `zig test`.
43 * Supported architectures: `x86_64`
44 * Supported operating systems: Linux
43 * Supported architectures: `x86_64`, `i386`
44 * Supported operating systems: linux
45 * Friendly toward package maintainers. Reproducible build, bootstrapping
46 process carefully documented. Issues filed by package maintainers are
47 considered especially important.
48 * Easy cross-compiling.
4549
4650## Planned Features
4751
......@@ -53,7 +57,6 @@ compromises backward compatibility.
5357 * Eliminate the preprocessor, but (most) everything you can accomplish with
5458 the preprocessor, you can accomplish directly in the language.
5559 * Automatically provide test coverage.
56 * Friendly toward package maintainers.
5760 * Ability to declare dependencies as Git URLS with commit locking (can
5861 provide a tag or sha1).
5962 * Include documentation generator.
......@@ -62,7 +65,6 @@ compromises backward compatibility.
6265 behavior *would* happen.
6366 * Compiler exposes itself as a library.
6467 * Support for all popular architectures and operating systems.
65 * Easy cross-compiling.
6668
6769## Building
6870