Update the webpage (#2499)

JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
This commit is contained in:
László Langó
2018-08-31 12:02:17 +02:00
committed by Akos Kiss
parent 2ce27a189a
commit cf87970ef6
8 changed files with 722 additions and 314 deletions
+5 -5
View File
@@ -63,20 +63,20 @@ python tools/build.py --profile=es5.1|es2015-subset|minimal
See also the related [README.md](https://github.com/jerryscript-project/jerryscript/blob/master/jerry-core/profiles/README.md).
**Use (jerry, compiler-default, external) libc**
**Use (compiler-default, external) libc**
The default libc is jerry-libc, but you can use compiler-default libc or an external libc:
The default libc is the compiler-default libc but you can use an external libc as well:
- compiler-default libc:
```bash
python tools/build.py --jerry-libc=off
python tools/build.py
```
- external libc:
```bash
python tools/build.py --jerry-libc=off --compile-flag="-nostdlib -I/path/to/ext-libc/include" --link-lib="ext-c"
python tools/build.py --compile-flag="-nostdlib -I/path/to/ext-libc/include" --link-lib="ext-c"
```
**Add toolchain file**
@@ -96,7 +96,7 @@ python tools/build.py --toolchain=cmake/toolchain_linux_armv7l.cmake
**Use system memory allocator**
```bash
python tools/build.py --system-allocator=on --jerry-libc=off
python tools/build.py --system-allocator=on
```
*Note*: System allocator is only supported on 32 bit systems.