aboutsummaryrefslogtreecommitdiff
path: root/build-aux/ci_build.sh
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2023-11-22 21:12:15 +0800
committerJia Tan <jiat0218@gmail.com>2023-11-30 20:09:46 +0800
commitdb2b4aa068a492c0013279a4ed43803e8ff9bb3e (patch)
treeeebd4a2062d5fc3b036c56a0e54ac86a9cf68c77 /build-aux/ci_build.sh
parentCMake: Use consistent indentation with check_c_source_compiles(). (diff)
downloadxz-db2b4aa068a492c0013279a4ed43803e8ff9bb3e.tar.xz
CI: Allow ci_build.sh to set a different C compiler.
Diffstat (limited to 'build-aux/ci_build.sh')
-rwxr-xr-xbuild-aux/ci_build.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/build-aux/ci_build.sh b/build-aux/ci_build.sh
index 41cc2bc5..51b611a6 100755
--- a/build-aux/ci_build.sh
+++ b/build-aux/ci_build.sh
@@ -23,6 +23,7 @@ USAGE="Usage: $0
-d [encoders|decoders|bcj|delta|threads|shared|nls|small|ifunc|clmul|sandbox]
-f [CFLAGS]
-l [destdir]
+ -m [compiler]
-n [ARTIFACTS_DIR_NAME]
-p [all|build|test]
-s [srcdir]"
@@ -55,7 +56,7 @@ ARTIFACTS_DIR_NAME="output"
# Parse arguments #
###################
-while getopts a:b:c:d:l:n:s:p:f:h opt; do
+while getopts a:b:c:d:l:m:n:s:p:f:h opt; do
# b option can have either value "autotools" OR "cmake"
case ${opt} in
h)
@@ -97,6 +98,10 @@ while getopts a:b:c:d:l:n:s:p:f:h opt; do
;;
l) DEST_DIR="$OPTARG"
;;
+ m)
+ CC="$OPTARG"
+ export CC
+ ;;
n) ARTIFACTS_DIR_NAME="$OPTARG"
;;
s) SRC_DIR="$OPTARG"
@@ -237,6 +242,10 @@ then
add_extra_option "$SMALL" "-DHAVE_SMALL=ON" ""
+ if test -n "$CC" ; then
+ EXTRA_OPTIONS="$EXTRA_OPTIONS -DCMAKE_C_COMPILER=$CC"
+ fi
+
# 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" -G "Unix Makefiles"