build.py help you build IoT.js.
It locates in "./tools" directory of source tree.
It automatically creates a directory where build object and outputs will be generated, checks configurations, tidiness of source code, licenses, and more. Also it downloads, updates and builds submodules. And finally generate IoT.js binary.
You can build IoT.js with default setting for your host machine with;
./tools/build.py
The command will generate runnable IoT.js binary in "./build//debug/bin/iotjs".
You can also build release binary with;
./tools/build.py --buildtype=release
The following arguments are related to the IoT.js framework.
release
|debug
Specify whether build output will be for 'debug' or 'release'.
./tools/build.py --buildtype=release
Specify a directory where build outputs will be generated.
If given path is not exist, build.py will create it.
./tools/build.py --builddir=./build
With given this option, build.py will generate IoT.js output as a library.
./tools/build.py ---buildlib
Specify CMake parameters for IoT.js.
"cmake" command for IoT.js will be executed with the given parameter applied.
If you have multiple parameters, supply it with multiple use of this option;
./tools/build.py --cmake-param="..." --cmake-param="..."
Specify C compiler flags for IoT.js.
If you have multiple compile flags, supply it with multiple use of this option;
./tools/build.py --compile-flag="..." --compile-flag="..."
With given this option, build.py will clear all the build directory before start new build.
./tools/build.py --clean
Specify build configuration file path.
./tools/build.py --config=build.arm.nuttx.stm32f4dis.config
build.default.config
file is in the source tree for default setting.
If this option is not specified, build.config
file will be applied. If the file does not exist, it will be copied from build.default.config
.
Parameters specified by the config file is applied, and then the parameters given by command line overwrite over the settings.
If you need to apply the same set of parameters for each build, making your own config file and trigger build.py with the config file would be more convenient.
Enable to build experimental features
./tools/build.py --experimental
Specify external include directory for IoT.js.
If you have multiple external include directoies, supply it with multiple use of this option;
./tools/build.py --external-include-dir="..." --external-include-dir="..."
Specify external library that will be linked with IoT.js.
If you have multiple such libraries, supply it with multiple use of this option;
./tools/build.py --external-lib="libxxx"
Specify the path of modules.json files which should be processed (format: path1,path2,...). See also: "How to write a new module"
./tools/build.py --external-modules=/home/iotjs/my-modules-directory
Specify linker flags for IoT.js.
If you have multiple link flags, supply it with multiple use of this option;
./tools/build.py --link-flag="..." --link-flag="..."
Disable test execution with valgrind after build.
./tools/build.py --no-check-valgrind
With given this option, submoduls will not initialized before start build.
./tools/build.py --no-init-submodule
With given this option, compilation process will not run in parallel. In other words, executes make
without -j
option.
./tools/build.py --no-parallel-build
To build for nuttx os, nuttx home directory must be given.
./tools/build.py --target-os=nuttx --target-arch=arm --target-board=stm32f4dis --nuttx-home="..."
With given this option, build.py will use the specified profile for the build. See also: "How to write a new module"
./tools/build.py --profile=./profiles/minimal.profile
full
|quiet
Execute tests after build, optional argument specifies the level of output for the testrunner.
./tools/build.py --run-test=full
The location of the development tree root directory (sysroot). Must be compatible with used toolchain.
./tools/build.py --sysroot=/home/iotjs/sysroot-directory
arm
|x86
|i686
|x86_64
|x64
|mips
|noarch
Specify target architecture.
./tools/build.py --target-arch=arm
artik10
|artik05x
|rpi2
|rpi3
|stm32f4dis
| empty
Specify target board.
./tools/build.py --target-os=nuttx --target-arch=arm --target-board=stm32f4dis
linux
|darwin
|osx
|nuttx
|tizen
|tizenrt
|openwrt
Specify target OS.
./tools/build.py --target-os=nuttx --target-arch=arm
The following arguments are related to the JavaScript engine under the framework. For example they can change the enabled features of the ECMA-262 standard.
Specify CMake parameters for JerryScript.
"cmake" command for JerryScript will be executed with the given parameter applied.
If you have multiple parameters, supply it with multiple use of this option
Specify C compiler flags for JerryScript.
If you have multiple cflags, supply it with multiple use of this option
./tools/build.py --jerry-compile-flag="-DCONFIG_ECMA_LCACHE_DISABLE"
Enable JerryScript debugger. See also "Use JerryScript Debugger".
./tools/build.py --jerry-debugger
Specify object heap limit for JerryScript engine.
./tools/build.py --jerry-heaplimit=80
Specify the name of the JerryScript heap section.
./tools/build.py --jerry-heap-section=".ARM.__at_0x20000"
With given this option, JerryScript will be built with LTO.
./tools/build.py --jerry-lto
Enable memstat of JerryScript engine.
./tools/build.py --jerry-memstat
es5.1
|es2015-subset | absolute path to a custom profile file
Specify the profile for JerryScript (default: es5.1). In JerryScript all of the features are enabled by default, so an empty profile file turns on all of the available ECMA features. See also the related README.md.
E.g.: /home/iotjs/my-jerry-profile.profile
# Turn off every ES2015 feature EXCEPT the arrow functions
CONFIG_DISABLE_ES2015_BUILTIN
CONFIG_DISABLE_ES2015_PROMISE_BUILTIN
CONFIG_DISABLE_ES2015_TEMPLATE_STRINGS
CONFIG_DISABLE_ES2015_TYPEDARRAY_BUILTIN
./tools/build.py --jerry-profile=/home/iotjs/my-jerry-profile.profile
Enable/disable backtrace information of JavaScript code (default: ON in debug and OFF in release build).
./tools/build.py --js-backtrace