Skip to content

webosbrew/native-toolchain

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Unofficial Native Toolchain for webOS

Ports, downloads and documents for unofficial webOS NDK. You can use this tool to develop native applications for your webOS based TV.


Download

Operating System x86_64 arm64
Linux arm-webos-linux-gnueabi_sdk-buildroot.tar.gz arm-webos-linux-gnueabi_sdk-buildroot_linux-aarch64.tar.bz2
macOS arm-webos-linux-gnueabi_sdk-buildroot_darwin-x86_64.tar.bz2 arm-webos-linux-gnueabi_sdk-buildroot_darwin-arm64.tar.bz2

Install

  1. Download tarball for your system listed above
  2. Extract the tarball to the location you want (please avoid having spaces and special characters in the path)
  3. Run relocate-sdk.sh in extracted contents

Usage

CMake

When you build a CMake project in command line, assign CMAKE_TOOLCHAIN_FILE with toolchain file.

cmake -B build -DCMAKE_TOOLCHAIN_FILE=/path/to/extracted/tarball/arm-webos-linux-gnueabi_sdk-buildroot/share/buildroot/toolchainfile.cmake

For VSCode CMake Tools, add entry in Kit options:

[
  {
    "name": "webOS",
    "toolchainFile": "/path/to/extracted/tarball/arm-webos-linux-gnueabi_sdk-buildroot/share/buildroot/toolchainfile.cmake"
  }
]

Advanced Usage Guide: Building the Port

If your machine is not included, you can build it on your local machine. Normally, you don't need to do this!

Prerequisites

  • GCC
  • CMake
  • Newer GNU Make (default one in macOS will probably not work)

Build Toolchain Port

Please set CC and CXX environment variable to binary of GCC you have installed. If your LANG environment variable is not en_US.UTF-8, please set to that.

cmake -E make_directory build
cmake -B build -DCMAKE_INSTALL_PREFIX=/path/to/install/location
cmake --build build 
cmake --install build # Ensure you have write permission to the prefix you set

Then the toolchain will be installed to the location you want automatically.