Lines Matching +full:build +full:- +full:with +full:- +full:python
7 - `gcc` or any C99-compliant compiler (native or cross, e.g., arm-none-eabi)
8 - `cmake` >= `2.8.12.2`
12 - `bash` >= `4.3.11`
13 - `cppcheck` >= `1.61`
14 - `vera++` >= `1.2.1`
15 - `python` >= `2.7.6`
18 sudo apt-get install gcc gcc-arm-none-eabi cmake cppcheck vera++ python
23 - `awk`
24 - `bc`
25 - `find`
26 - `sed`
30 **To build debug version for Linux**
33 python tools/build.py --debug
36 **To build debug version for Linux without LTO (Link Time Optimization)**
39 python tools/build.py --debug --lto=off
45 tools/build.py --debug --logging=on --error-messages=on --line-info=on
51 python tools/build.py --cmake-param=CMAKE_PARAM
57 python tools/build.py --profile=es5.1|es2015-subset|minimal
60 …so the related [README.md](https://github.com/jerryscript-project/jerryscript/blob/master/jerry-co…
62 **Use (compiler-default, external) libc**
64 The default libc is the compiler-default libc but you can use an external libc as well:
66 - compiler-default libc:
69 python tools/build.py
72 - external libc:
75 python tools/build.py --compile-flag="-nostdlib -I/path/to/ext-libc/include" --link-lib="ext-c"
83 python tools/build.py --toolchain=TOOLCHAIN
86 For example the cross-compile to RaspberryPi 2 is something like this:
89 python tools/build.py --toolchain=cmake/toolchain_linux_armv7l.cmake
95 python tools/build.py --system-allocator=on
103 python tools/build.py --cpointer-32bit=on
111 python tools/build.py --mem-heap=256
117 python tools/build.py --cpointer-32bit=on --mem-heap=1024
123 **To build with libfuzzer support**
126 CC=clang python tools/build.py --libfuzzer=on --compile-flag=-fsanitize=address --lto=off
135 python tools/build.py --help
141 python tools/run-tests.py --precommit
146 **To run build option tests**
149 python tools/run-tests.py --buildoption-test
155 python tools/run-tests.py --unittests
158 **To run jerry-tests**
161 python tools/run-tests.py --jerry-tests
164 **To run jerry-test-suite**
167 python tools/run-tests.py --jerry-test-suite
170 **To run signed-off check**
173 python tools/run-tests.py --check-signed-off
179 python tools/run-tests.py --check-cppcheck
185 python tools/run-tests.py --check-vera
191 python tools/run-tests.py --help