summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2023-04-25 20:05:26 +0800
committerJia Tan <jiat0218@gmail.com>2023-04-25 20:05:26 +0800
commit16b81a057a87c2f18e6ed6447f003af0cbdcfe43 (patch)
tree5062bfd936e427c87bedcfab1d92a49e97ca7eb7
parent78ccd93951f9e988d447bcdd70b24f6df5448d1d (diff)
downloadxz-16b81a057a87c2f18e6ed6447f003af0cbdcfe43.tar.gz
CI: ci_build.sh allows configuring small build.
-rwxr-xr-xbuild-aux/ci_build.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/build-aux/ci_build.sh b/build-aux/ci_build.sh
index 724e66d..339938b 100755
--- a/build-aux/ci_build.sh
+++ b/build-aux/ci_build.sh
@@ -19,7 +19,7 @@ set -e
USAGE="Usage: $0
-b [autotools|cmake]
-c [crc32|crc64|sha256]
- -d [encoders|decoders|bcj|delta|threads|shared|nls]
+ -d [encoders|decoders|bcj|delta|threads|shared|nls|small]
-f [CFLAGS]
-l [destdir]
-n [ARTIFACTS_DIR_NAME]
@@ -39,6 +39,7 @@ DECODERS="y"
THREADS="y"
SHARED="y"
NATIVE_LANG_SUPPORT="y"
+SMALL="n"
SRC_DIR="$ABS_DIR/../"
DEST_DIR="$SRC_DIR/../xz_build"
PHASE="all"
@@ -78,6 +79,7 @@ while getopts b:c:d:l:n:s:p:f:h opt; do
threads) THREADS="n" ;;
shared) SHARED="n";;
nls) NATIVE_LANG_SUPPORT="n";;
+ small) SMALL="y";;
*) echo "Invalid disable value: $disable_arg"; exit 1 ;;
esac
done
@@ -194,6 +196,7 @@ then
add_extra_option "$THREADS" "" "--disable-threads"
add_extra_option "$SHARED" "" "--disable-shared"
add_extra_option "$NATIVE_LANG_SUPPORT" "" "--disable-nls"
+ add_extra_option "$SMALL" "--enable-small" ""
# Run configure script
"$SRC_DIR"/configure --enable-werror --enable-checks="$CHECK_TYPE" $EXTRA_OPTIONS --config-cache
@@ -218,6 +221,8 @@ then
# CMake disables the shared library by default.
add_extra_option "$SHARED" "-DBUILD_SHARED_LIBS=ON" ""
+ add_extra_option "$SMALL" "-DHAVE_SMALL=ON" ""
+
# Remove old cache file to clear previous settings.
rm -f "CMakeCache.txt"
cmake "$SRC_DIR/CMakeLists.txt" -B "$DEST_DIR" $EXTRA_OPTIONS -DADDITIONAL_CHECK_TYPES="$CHECK_TYPE"