You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
572 B
23 lines
572 B
#! /usr/bin/env bash
|
|
|
|
### The following assumes you are building in a subdirectory of ACCESS Root
|
|
if [ "X$ACCESS" == "X" ] ; then
|
|
ACCESS=$(cd ../../..; pwd)
|
|
echo "ACCESS set to ${ACCESS}"
|
|
fi
|
|
INSTALL_PATH=${INSTALL_PATH:-${ACCESS}}
|
|
|
|
. ${ACCESS}/TPL/compiler.sh
|
|
|
|
CFLAGS="-I${INSTALL_PATH}/include"; export CFLAGS
|
|
CPPFLAGS='-DNDEBUG'; export CPPFLAGS
|
|
LDFLAGS="-L${INSTALL_PATH}/lib"; export LDFLAGS
|
|
|
|
rm -f config.cache
|
|
./configure --prefix=${INSTALL_PATH} $1
|
|
|
|
echo ""
|
|
echo " COMPILER: ${CC}"
|
|
echo " ACCESS: ${ACCESS}"
|
|
echo "INSTALL_PATH: ${INSTALL_PATH}"
|
|
echo ""
|
|
|