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....@@ -40,8 +40,12 @@ compromises backward compatibility.
40 * Release mode produces heavily optimized code. What other projects call40 * Release mode produces heavily optimized code. What other projects call
41 "Link Time Optimization" Zig does automatically.41 "Link Time Optimization" Zig does automatically.
42 * Mark functions as tests and automatically run them with `zig test`.42 * Mark functions as tests and automatically run them with `zig test`.
43 * Supported architectures: `x86_64`43 * Supported architectures: `x86_64`, `i386`
44 * Supported operating systems: Linux44 * 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
46## Planned Features50## Planned Features
4751
...@@ -53,7 +57,6 @@ compromises backward compatibility....@@ -53,7 +57,6 @@ compromises backward compatibility.
53 * Eliminate the preprocessor, but (most) everything you can accomplish with57 * Eliminate the preprocessor, but (most) everything you can accomplish with
54 the preprocessor, you can accomplish directly in the language.58 the preprocessor, you can accomplish directly in the language.
55 * Automatically provide test coverage.59 * Automatically provide test coverage.
56 * Friendly toward package maintainers.
57 * Ability to declare dependencies as Git URLS with commit locking (can60 * Ability to declare dependencies as Git URLS with commit locking (can
58 provide a tag or sha1).61 provide a tag or sha1).
59 * Include documentation generator.62 * Include documentation generator.
...@@ -62,7 +65,6 @@ compromises backward compatibility....@@ -62,7 +65,6 @@ compromises backward compatibility.
62 behavior *would* happen.65 behavior *would* happen.
63 * Compiler exposes itself as a library.66 * Compiler exposes itself as a library.
64 * Support for all popular architectures and operating systems.67 * Support for all popular architectures and operating systems.
65 * Easy cross-compiling.
6668
67## Building69## Building
6870