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....@@ -16,9 +16,9 @@ Zig instead of e.g. cmake.
1616
17 * Compatible with C libraries with no wrapper necessary. Directly include17 * Compatible with C libraries with no wrapper necessary. Directly include
18 C .h files and get access to the functions and symbols therein.18 C .h files and get access to the functions and symbols therein.
19 * Compile units do not depend on libc unless explicitly linked.
20 * Provides standard library which competes with the C standard library and is19 * 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.
22 * Nullable type instead of null pointers.22 * Nullable type instead of null pointers.
23 * Tagged union type instead of raw unions.23 * Tagged union type instead of raw unions.
24 * Generics so that one can write efficient data structures that work for any24 * Generics so that one can write efficient data structures that work for any
...@@ -45,12 +45,12 @@ Zig instead of e.g. cmake....@@ -45,12 +45,12 @@ Zig instead of e.g. cmake.
45 * Zig Build System competes with make, cmake, autotools, SCons, etc.45 * Zig Build System competes with make, cmake, autotools, SCons, etc.
46 * In addition to creating executables, creating a C library is a primary use46 * In addition to creating executables, creating a C library is a primary use
47 case. You can export an auto-generated .h file.47 case. You can export an auto-generated .h file.
48 * Standard library supports OS abstractions for:48 * Standard library supports Operating System abstractions for:
49 * `x86_64` `linux`49 * `x86_64` `linux`
50 * Support for all popular operating systems and architectures is planned.50 * Support for all popular operating systems and architectures is planned.
51 * For Operating System development, Zig supports all architectures that LLVM51 * For OS development, Zig supports all architectures that LLVM does. All the
52 does. All the standard library that does not depend on an OS is available52 standard library that does not depend on an OS is available to you in
53 to you in freestanding mode.53 freestanding mode.
5454
55## Community55## Community
5656
...@@ -60,7 +60,7 @@ Zig instead of e.g. cmake....@@ -60,7 +60,7 @@ Zig instead of e.g. cmake.
6060
61## Building61## 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
65### Dependencies65### Dependencies
6666