diff options
author | Jia Tan <jiat0218@gmail.com> | 2023-11-22 21:12:15 +0800 |
---|---|---|
committer | Jia Tan <jiat0218@gmail.com> | 2023-11-30 20:09:46 +0800 |
commit | db2b4aa068a492c0013279a4ed43803e8ff9bb3e (patch) | |
tree | eebd4a2062d5fc3b036c56a0e54ac86a9cf68c77 /build-aux | |
parent | CMake: Use consistent indentation with check_c_source_compiles(). (diff) | |
download | xz-db2b4aa068a492c0013279a4ed43803e8ff9bb3e.tar.xz |
CI: Allow ci_build.sh to set a different C compiler.
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/ci_build.sh | 11 |
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" |