summaryrefslogtreecommitdiff
path: root/bin/compiler
diff options
context:
space:
mode:
authoryehonal <yehonal.azeroth@gmail.com>2016-07-06 15:27:06 +0200
committerYehonal <hw.2@hotmail.it>2016-07-08 23:55:11 +0200
commiteda1171939b6d7d951aef2da5b4bbb4e926c1f4a (patch)
tree74b2bf23cb61631094f9bb79a0642dbad48f7735 /bin/compiler
parentaaa7a82ca0324b5f43ab5b0b8b6c49b774dd8729 (diff)
readme for compiler scripts
Diffstat (limited to 'bin/compiler')
-rw-r--r--bin/compiler/README.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/bin/compiler/README.md b/bin/compiler/README.md
new file mode 100644
index 0000000000..f423501669
--- /dev/null
+++ b/bin/compiler/README.md
@@ -0,0 +1,24 @@
+## How to compile:
+
+first of all, if you need some custom configuration you have to copy and rename
+config.sh.dist in config.sh and configure it
+
+* for a "clean" compilation you must run all scripts in their order:
+
+ ./1-clean.sh
+ ./2-configure.sh
+ ./3-build.sh
+
+* if you add/rename/delete some sources and you need to compile it you have to run:
+
+ ./2-configure.sh
+ ./3-build.sh
+
+* if you have modified code only, you just need to run
+
+ ./3-build.sh
+
+
+## Note:
+
+For an optimal development process and **really faster** compilation time, is suggested to use clang instead of gcc \ No newline at end of file