Sigmastar — Sdk Install
cd SStar_Linux_SDK_Vx.x.x.x/ ./SStar_linux_sdk_install.sh
Last updated: 2025. This guide applies to SigmaStar SDK versions 2019–2024. For SDKs dated 2025+, refer to SigmaStar’s newer ATE (Advanced Tool Environment) documentation.
Create a dedicated workspace directory to avoid permission issues, and extract the archive: sigmastar sdk install
sudo mkdir -p /opt/sigmastar sudo tar -xzvf toolchain/arm-linux-gnueabihf-9.1.0.tar.gz -C /opt/sigmastar/ Use code with caution. 2. Update Environment Variables
Save and exit ( Ctrl+O , Enter , Ctrl+X ), then reload the configuration: source ~/.bashrc Use code with caution. Verify the installation by checking the compiler version: arm-linux-gnueabihf-gcc -v Use code with caution. Step 3: Configuring the Project Board Profile cd SStar_Linux_SDK_Vx
cd ~/sigmastar_workspace tar --exclude='build/.ccache' --exclude='kernel/.git' \ -cjf Sigmastar_SDK_ready_to_use.tar.bz2 Sigmastar_SSD222_SDK/
declare -x ARCH="arm" declare -x CROSS_COMPILE="arm-buildroot-linux-uclibcgnueabihf-" make infinity6b0_ssc009b_s01a_defconfig make Create a dedicated workspace directory to avoid permission
SigmaStar SDKs are highly sensitive to the host operating system and installed build tools. While modern Linux distributions can be used, offer the highest out-of-the-box compatibility with older SDK toolchains. If you are using Ubuntu 20.04 or newer, you must manually install legacy compatibility libraries. Install Required Dependencies
: Re-run sudo apt-get install lib32z1 libc6-dev-i386 to install the missing architecture translation layers.