osrm-backend/scripts/gcc/4.9.2-cortex_a9-hf/script.sh
Daniel J. Hofmann ce1141982b Squashed 'third_party/mason/' changes from 6b4c359..c7a9670
git-subtree-dir: third_party/mason
git-subtree-split: c7a967003a7113a17faafe3b41082ad1ae3f1c2f
2017-02-15 11:48:43 +01:00

36 lines
585 B
Bash
Executable File

#!/usr/bin/env bash
MASON_NAME=gcc
MASON_VERSION=4.9.2-cortex_a9-hf
MASON_LIB_FILE=root/bin/arm-cortex_a9-linux-gnueabihf-gcc
. ${MASON_DIR}/mason.sh
if [ -f ${MASON_PREFIX}/setup.sh ]; then
. ${MASON_PREFIX}/setup.sh
fi
function mason_load_source {
mkdir -p ${MASON_ROOT}
export MASON_BUILD_PATH=${MASON_ROOT}/../toolchain/${MASON_PLATFORM}/
}
function mason_compile {
mkdir -p ${MASON_PREFIX}
cp -a ${MASON_BUILD_PATH} ${MASON_PREFIX}
}
function mason_cflags {
:
}
function mason_ldflags {
:
}
function mason_static_libs {
:
}
mason_run "$@"