Caution
Building NDK needs a high-performance build system computer. See Build System Requirements.
Building NDK needs a high-performance build system computer. See Build System Requirements.
To build downloadable native apps or services for webOS Open Source Edition (OSE), you need to install Native Development Kit (NDK) on your computer.
The NDK is a set of tools that include toolchains, libraries, and header files. This guide describes how to build and install the NDK on your computer.
To build the NDK, enter the following commands:
$ git clone https://github.com/webosose/build-webos
$ cd build-webos
$ git checkout -t origin/<BRANCH_OF_THE_LATEST_WEBOS_OSE_VERSION>
$ sudo scripts/prerequisites.sh
$ ./mcf -p <NUM_OF_CPUS> -b <NUM_OF_CPUS> raspberrypi4-64
$ source oe-init-build-env
$ bitbake -c populate_sdk webos-image
Parameter | Description |
---|---|
<BRANCH_OF_THE_LATEST_WEBOS_OSE_VERSION> | This parameter varies depending on the current the webOS OSE version. Use the latest version. See also Cloning the Repository. |
<NUM_OF_CPUS> | Number of CPU cores to allocate to the building process. For the specific value, refer to Appendix A. Setting Values for mcf. |
If the building process succeeds, a script file (.sh
) is generated in build-webos/BUILD/deploy/sdk/
.
$ ls BUILD/deploy/sdk
# Example results for webOS OSE v2.20.1
webos-sdk-x86_64-cortexa72-toolchain-2.20.1.g.host.manifest
webos-sdk-x86_64-cortexa72-toolchain-2.20.1.g.sh
webos-sdk-x86_64-cortexa72-toolchain-2.20.1.g.target.manifest
webos-sdk-x86_64-cortexa72-toolchain-2.20.1.g.testdata.json
To install the NDK, you need to:
.sh
) file.To run the generated script file, enter the following commands:
$ cd BUILD/deploy/sdk
$ ./webos-sdk-x86_64-cortexa72-toolchain-2.20.1.g.sh
# Example results for webOS OSE v2.20.1
webOS OSE SDK installer version 2.20.1.g
========================================
Enter target directory for SDK (default: /usr/local/webos-sdk-x86_64):
You are about to install the SDK to "/usr/local/webos-sdk-x86_64". Proceed [Y/n]? Y
If the process succeeds, an environment setup file (environment-setup-cortexa72-webos-linux
) is generated in the target directory (default: /usr/local/webos-sdk-x86_64
).
$ ls /usr/local/webos-sdk-x86_64/
environment-setup-cortexa72-webos-linux sysroots
site-config-cortexa72-webos-linux version-cortexa72-webos-linux
To set up the environment, run the environment setup file.
$ source /usr/local/webos-sdk-x86_64/environment-setup-cortexa72-webos-linux
Output messages might or might not be displayed depending on your computer’s setup. If you see the message below, it’s not an error so you can proceed to the next step.
Icecc not found. Disabling distributed compiling
Now you ready to build downloadable native apps or services. Check the following guides:
Contents