Radix cross Linux Toolchains for ARC architecture

ARC Toolchains for boot loaders components of some SoCs (such as Amlogic System on Chip)

40 Commits   0 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=arc-s8xx-elf32
fi

if test -z "$TOOLCHAIN_PATH"; then
  export TOOLCHAIN_PATH=/opt/toolchains/arc-S8XX-elf32-newlib/1.10.0
fi

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