Packages to Install with SLT#
Install these packages to use the command line development flow:
cmake
commander
exx32
gcc-arm-none-eabi
ninja
sdm
simplicity-sdk
slc_cli
zap
SLT supports installing multiple packages using recipe files. You can place all of the packages above in a recipe file called cli_tools.toml
by opening a text editor, pasting the following code block into the file, and then saving it as cli_tools.toml
:
# This is the recipe file driving the command line tool install flow in SLT
[dependency]
cmake = "~"
commander = "~"
exx32 = "~"
gcc-arm-none-eabi = "~"
ninja = "~"
sdm = "~"
simplicity-sdk = "~"
slc_cli = "~"
zap = "~"
With SLT, installing slc_cli
automatically installs the correct Java as a dependency package, but the Java path must be added to the system variable
path.