jenkins.sh: add --disable-libsctp

Somehow the logic in libosmocore configure.ac dosen;t work: Using
--enable-embedded should automatically select --disable-libsctp, but
doesn't :(

Related: OS#4265
Change-Id: Id51153863bf7db2843805779723f340228b5ddaf
This commit is contained in:
Harald Welte 2019-11-12 12:07:53 +01:00 committed by laforge
parent 22dd1ff77d
commit 9db9d2e57b
1 changed files with 4 additions and 1 deletions

View File

@ -38,7 +38,10 @@ cd libosmocore
mkdir -p "$inst/stow"
autoreconf --install --force
./configure --enable-static --prefix="$inst/stow/libosmocore" --host=arm-none-eabi --enable-embedded --disable-doxygen --disable-shared --disable-pseudotalloc --enable-external-tests CFLAGS="-Os -ffunction-sections -fdata-sections -nostartfiles -nodefaultlibs -Werror -Wno-error=deprecated -Wno-error=deprecated-declarations -Wno-error=cpp -mthumb -Os -mlong-calls -g3 -mcpu=cortex-m4 -mfloat-abi=softfp -mfpu=fpv4-sp-d16 -I /home/laforge/projects/git/osmo-ccid-firmware/sysmoOCTSIM -Wno-error=format"
./configure --enable-static --prefix="$inst/stow/libosmocore" --host=arm-none-eabi \
--enable-embedded --disable-doxygen --disable-shared --disable-pseudotalloc \
--disable-libsctp --enable-external-tests \
CFLAGS="-Os -ffunction-sections -fdata-sections -nostartfiles -nodefaultlibs -Werror -Wno-error=deprecated -Wno-error=deprecated-declarations -Wno-error=cpp -mthumb -Os -mlong-calls -g3 -mcpu=cortex-m4 -mfloat-abi=softfp -mfpu=fpv4-sp-d16 -I /home/laforge/projects/git/osmo-ccid-firmware/sysmoOCTSIM -Wno-error=format"
make $PARALLEL_MAKE install
make clean
STOW_DIR="$inst/stow" stow --restow libosmocore