newlib: set CPATH for coverity too

This commit is contained in:
Giacomo Tesio 2017-04-23 13:35:01 +02:00
parent 4d58700318
commit 7771a83f18
1 changed files with 3 additions and 8 deletions

View File

@ -50,14 +50,9 @@ if [ "$NEWLIB_OPTIMIZATION" = "" ]; then
NEWLIB_OPTIMIZATION=2
fi
if [ "$TRAVIS_BUILD_DIR" != "" ]; then
# something weird happens on Travis-CI so that newlib requires
# explicit set of the HOST compiler or it will use the
# Jehanne cross compiler and try to run the executable on linux
#
# I can't understand why...
export CC=gcc
fi
export CC=gcc
export CPATH=$CROSS_DIR/lib/gcc/x86_64-jehanne/4.9.4/include:$CROSS_DIR/lib/gcc/x86_64-jehanne/4.9.4/include-fixed
# NOTE: we use -O0 because apparently vsprintf functions do not
# work with -O2.