mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
CI: Allow disabling shared library in autotools builds.
This commit is contained in:
parent
77d1ebcc99
commit
32287dc8de
1 changed files with 8 additions and 1 deletions
|
@ -19,7 +19,7 @@ set -e
|
||||||
USAGE="Usage: $0
|
USAGE="Usage: $0
|
||||||
-b [autotools|cmake]
|
-b [autotools|cmake]
|
||||||
-c [crc32|crc64|sha256]
|
-c [crc32|crc64|sha256]
|
||||||
-d [encoders|decoders|bcj|delta|threads]
|
-d [encoders|decoders|bcj|delta|threads|shared]
|
||||||
-l [destdir]
|
-l [destdir]
|
||||||
-s [srcdir]
|
-s [srcdir]
|
||||||
-p [all|build|test]
|
-p [all|build|test]
|
||||||
|
@ -36,6 +36,7 @@ DELTA="y"
|
||||||
ENCODERS="y"
|
ENCODERS="y"
|
||||||
DECODERS="y"
|
DECODERS="y"
|
||||||
THREADS="y"
|
THREADS="y"
|
||||||
|
SHARED="y"
|
||||||
SRC_DIR="$ABS_DIR/../"
|
SRC_DIR="$ABS_DIR/../"
|
||||||
DEST_DIR="$SRC_DIR/../xz_build"
|
DEST_DIR="$SRC_DIR/../xz_build"
|
||||||
PHASE="all"
|
PHASE="all"
|
||||||
|
@ -78,6 +79,7 @@ while getopts b:c:d:l:s:p:f:h opt; do
|
||||||
bcj) BCJ="n" ;;
|
bcj) BCJ="n" ;;
|
||||||
delta) DELTA="n" ;;
|
delta) DELTA="n" ;;
|
||||||
threads) THREADS="n" ;;
|
threads) THREADS="n" ;;
|
||||||
|
shared) SHARED="n";;
|
||||||
*) echo "Invalid disable value: $disable_arg"; exit 1 ;;
|
*) echo "Invalid disable value: $disable_arg"; exit 1 ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
@ -138,6 +140,11 @@ if [ "$PHASE" = "all" ] || [ "$PHASE" = "build" ]; then
|
||||||
EXTRA_OPTIONS="$EXTRA_OPTIONS --disable-threads"
|
EXTRA_OPTIONS="$EXTRA_OPTIONS --disable-threads"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$SHARED" = "n" ]
|
||||||
|
then
|
||||||
|
EXTRA_OPTIONS="$EXTRA_OPTIONS --disable-shared"
|
||||||
|
fi
|
||||||
|
|
||||||
# Run configure script
|
# Run configure script
|
||||||
"$SRC_DIR"/configure --enable-werror --enable-checks=$CHECK_TYPE $EXTRA_OPTIONS
|
"$SRC_DIR"/configure --enable-werror --enable-checks=$CHECK_TYPE $EXTRA_OPTIONS
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue