aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2015-12-10 15:34:38 -0700
committerAndrew Kelley <superjoe30@gmail.com>2015-12-10 15:34:38 -0700
commit0dbee2300ed28c18ecccaf71f10f68eb2da71266 (patch)
treeac804032eccb2f07258b45023739b694ee937d8c /README.md
parent3e8a98fa619516d0617a827a79601264a554d88b (diff)
downloadzig-0dbee2300ed28c18ecccaf71f10f68eb2da71266.tar.gz
zig-0dbee2300ed28c18ecccaf71f10f68eb2da71266.zip
add inline assembly support
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 14 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3423251a11..2d59372970 100644
--- a/README.md
+++ b/README.md
@@ -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
+```