diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2015-12-10 15:34:38 -0700 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2015-12-10 15:34:38 -0700 |
| commit | 0dbee2300ed28c18ecccaf71f10f68eb2da71266 (patch) | |
| tree | ac804032eccb2f07258b45023739b694ee937d8c /README.md | |
| parent | 3e8a98fa619516d0617a827a79601264a554d88b (diff) | |
| download | zig-0dbee2300ed28c18ecccaf71f10f68eb2da71266.tar.gz zig-0dbee2300ed28c18ecccaf71f10f68eb2da71266.zip | |
add inline assembly support
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -58,7 +58,6 @@ compromises backward compatibility. * structs * loops * enums - * inline assembly and syscalls * conditional compilation and ability to check target platform and architecture * main function with command line arguments * void pointer constant @@ -83,10 +82,23 @@ compromises backward compatibility. ## Building +### Debug / Development Build + ``` mkdir build cd build -cmake .. +cmake .. -DCMAKE_INSTALL_PREFIX=$(pwd) make +make install ./run_tests ``` + +### Release / Install Build + +``` +mkdir build +cd build +cmake .. -DCMAKE_BUILD_TYPE=Release +make +sudo make install +``` |
