#!/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=arm-imx6-linux-gnueabihf
fi
if test -z "$TOOLCHAIN_PATH"; then
export TOOLCHAIN_PATH=/opt/toolchains/arm-IMX6-linux-glibc/1.9.8
fi
#
# END of default common variables.
#
#################################################################