authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-04-25 01:26:37-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-04-25 01:26:37-04:00
log4cc2ea14214434297d01c1c89e9308c5c332b0fb
treedf5c39a3ef97fc2f7f32463d9b2661387f67c07f
parenta5c509c94f5892cadf1aef67190ad56f57724aed

update travis badge to new url


1 files changed, 7 insertions(+), 7 deletions(-)

README.md+7-7
......@@ -16,9 +16,9 @@ Zig instead of e.g. cmake.
1616
1717 * Compatible with C libraries with no wrapper necessary. Directly include
1818 C .h files and get access to the functions and symbols therein.
19 * Compile units do not depend on libc unless explicitly linked.
2019 * Provides standard library which competes with the C standard library and is
21 always compiled against statically in source form.
20 always compiled against statically in source form. Compile units do not
21 depend on libc unless explicitly linked.
2222 * Nullable type instead of null pointers.
2323 * Tagged union type instead of raw unions.
2424 * Generics so that one can write efficient data structures that work for any
......@@ -45,12 +45,12 @@ Zig instead of e.g. cmake.
4545 * Zig Build System competes with make, cmake, autotools, SCons, etc.
4646 * In addition to creating executables, creating a C library is a primary use
4747 case. You can export an auto-generated .h file.
48 * Standard library supports OS abstractions for:
48 * Standard library supports Operating System abstractions for:
4949 * `x86_64` `linux`
5050 * Support for all popular operating systems and architectures is planned.
51 * For Operating System development, Zig supports all architectures that LLVM
52 does. All the standard library that does not depend on an OS is available
53 to you in freestanding mode.
51 * For OS development, Zig supports all architectures that LLVM does. All the
52 standard library that does not depend on an OS is available to you in
53 freestanding mode.
5454
5555## Community
5656
......@@ -60,7 +60,7 @@ Zig instead of e.g. cmake.
6060
6161## Building
6262
63[![Build Status](https://travis-ci.org/andrewrk/zig.svg?branch=master)](https://travis-ci.org/andrewrk/zig)
63[![Build Status](https://travis-ci.org/zig-lang/zig.svg?branch=master)](https://travis-ci.org/zig-lang/zig)
6464
6565### Dependencies
6666