| ... | @@ -16,9 +16,9 @@ Zig instead of e.g. cmake. | ... | @@ -16,9 +16,9 @@ Zig instead of e.g. cmake. |
| 16 | | 16 | |
| 17 | * Compatible with C libraries with no wrapper necessary. Directly include | 17 | * 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 is | 19 | * 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 any | 24 | * 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 use | 46 | * 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 LLVM | 51 | * 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 available | 52 | standard library that does not depend on an OS is available to you in |
| 53 | to you in freestanding mode. | 53 | freestanding mode. |
| 54 | | 54 | |
| 55 | ## Community | 55 | ## Community |
| 56 | | 56 | |
| ... | @@ -60,7 +60,7 @@ Zig instead of e.g. cmake. | ... | @@ -60,7 +60,7 @@ Zig instead of e.g. cmake. |
| 60 | | 60 | |
| 61 | ## Building | 61 | ## Building |
| 62 | | 62 | |
| 63 | [](https://travis-ci.org/andrewrk/zig) | 63 | [](https://travis-ci.org/zig-lang/zig) |
| 64 | | 64 | |
| 65 | ### Dependencies | 65 | ### Dependencies |
| 66 | | 66 | |