Skip to content
Snippets Groups Projects
Commit 6c7cd7c3 authored by jdh8d's avatar jdh8d
Browse files

added cfar_mode if dir name==cfar_umbrella

parent ffe4b268
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,10 @@ if [ "$PEASOUP_UMBRELLA_DIR" != "$FULL_BUILD_LOC" ]; then ...@@ -10,6 +10,10 @@ if [ "$PEASOUP_UMBRELLA_DIR" != "$FULL_BUILD_LOC" ]; then
exit 1; exit 1;
fi fi
if [ `basename $BUILD_LOC` == "cfar_umbrella" ]; then
cfar_mode="--enable-cfar"
fi
# stratafier # stratafier
cd $PEASOUP_UMBRELLA_DIR/stratafier cd $PEASOUP_UMBRELLA_DIR/stratafier
make || exit make || exit
...@@ -30,16 +34,16 @@ if [ `uname -m` = 'x86_64' ]; then ...@@ -30,16 +34,16 @@ if [ `uname -m` = 'x86_64' ]; then
cp -R $STRATA $STRATA32 cp -R $STRATA $STRATA32
fi fi
cd $STRATA_HOME32 cd $STRATA_HOME32
STRATA_HOME=$STRATA_HOME32 STRATA=$STRATA_HOME32 ./build -host=i386-linux || exit STRATA_HOME=$STRATA_HOME32 STRATA=$STRATA_HOME32 ./build -host=i386-linux $cfar_mode || exit
# build x86-64 strata # build x86-64 strata
cd $STRATA_HOME cd $STRATA_HOME
./configure || exit ./configure $cfar_mode || exit
make || exit make || exit
else else
cd $STRATA_HOME cd $STRATA_HOME
./build || exit ./build $cfar_mode || exit
fi fi
# smp-static-analyzer # smp-static-analyzer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment