Radix cross Linux Toolchains

Toolchains for all supported by Radix cross Linux devices

80 Commits   2 Branches   13 Tags
#!/bin/bash

#################################################################
#
# default common variables:
#
if test -z "$HOST"; then
  export HOST=x86_64-pc-linux-gnu
fi

if test -z "$TARGET"; then
  export TARGET=aarch64-rk358x-linux-gnu
fi

if test -z "$TOOLCHAIN_PATH"; then
  export TOOLCHAIN_PATH=/opt/toolchains/aarch64-RK358X-linux-glibc/1.9.8
fi

#
# END of default common variables.
#
#################################################################