2022-11-14 21:41:36 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -x
|
|
|
|
set -e
|
|
|
|
|
2023-06-20 20:02:37 +00:00
|
|
|
# Script assumes the presence of the following:
|
|
|
|
# s3cmd
|
|
|
|
|
2024-04-14 03:12:52 +00:00
|
|
|
ZIGDIR="$PWD"
|
2022-11-14 21:41:36 +00:00
|
|
|
TARGET="$ARCH-macos-none"
|
|
|
|
MCPU="baseline"
|
2024-09-18 22:07:02 +00:00
|
|
|
CACHE_BASENAME="zig+llvm+lld+clang-$TARGET-0.14.0-dev.1622+2ac543388"
|
2022-11-14 21:41:36 +00:00
|
|
|
PREFIX="$HOME/$CACHE_BASENAME"
|
|
|
|
ZIG="$PREFIX/bin/zig"
|
|
|
|
|
2024-04-29 22:09:55 +00:00
|
|
|
if [ ! -d "$PREFIX" ]; then
|
|
|
|
cd $HOME
|
|
|
|
curl -L -O "https://ziglang.org/deps/$CACHE_BASENAME.tar.xz"
|
|
|
|
tar xf "$CACHE_BASENAME.tar.xz"
|
|
|
|
fi
|
|
|
|
|
2022-11-14 21:41:36 +00:00
|
|
|
cd $ZIGDIR
|
|
|
|
|
|
|
|
# Make the `zig version` number consistent.
|
|
|
|
# This will affect the cmake command below.
|
|
|
|
git fetch --unshallow || true
|
|
|
|
git fetch --tags
|
|
|
|
|
2024-07-18 01:49:53 +00:00
|
|
|
rm -rf build-debug
|
|
|
|
mkdir build-debug
|
|
|
|
cd build-debug
|
2022-12-04 22:45:15 +00:00
|
|
|
|
|
|
|
# Override the cache directories because they won't actually help other CI runs
|
|
|
|
# which will be testing alternate versions of zig, and ultimately would just
|
|
|
|
# fill up space on the hard drive for no reason.
|
2024-04-14 03:12:52 +00:00
|
|
|
export ZIG_GLOBAL_CACHE_DIR="$PWD/zig-global-cache"
|
|
|
|
export ZIG_LOCAL_CACHE_DIR="$PWD/zig-local-cache"
|
2022-12-04 22:45:15 +00:00
|
|
|
|
2023-06-20 20:02:37 +00:00
|
|
|
PATH="$HOME/local/bin:$PATH" cmake .. \
|
|
|
|
-DCMAKE_INSTALL_PREFIX="stage3-debug" \
|
2022-11-14 21:41:36 +00:00
|
|
|
-DCMAKE_PREFIX_PATH="$PREFIX" \
|
2023-01-20 18:57:49 +00:00
|
|
|
-DCMAKE_BUILD_TYPE=Debug \
|
2022-11-14 22:10:05 +00:00
|
|
|
-DCMAKE_C_COMPILER="$ZIG;cc;-target;$TARGET;-mcpu=$MCPU" \
|
|
|
|
-DCMAKE_CXX_COMPILER="$ZIG;c++;-target;$TARGET;-mcpu=$MCPU" \
|
2022-11-14 21:41:36 +00:00
|
|
|
-DZIG_TARGET_TRIPLE="$TARGET" \
|
|
|
|
-DZIG_TARGET_MCPU="$MCPU" \
|
2023-06-20 20:02:37 +00:00
|
|
|
-DZIG_STATIC=ON \
|
2023-07-22 03:29:42 +00:00
|
|
|
-DZIG_NO_LIB=ON \
|
2023-06-20 20:02:37 +00:00
|
|
|
-GNinja
|
2022-11-14 21:41:36 +00:00
|
|
|
|
2023-06-20 20:02:37 +00:00
|
|
|
$HOME/local/bin/ninja install
|
2022-11-14 21:41:36 +00:00
|
|
|
|
2023-06-20 20:02:37 +00:00
|
|
|
stage3-debug/bin/zig build test docs \
|
2024-04-14 03:12:52 +00:00
|
|
|
--zig-lib-dir "$PWD/../lib" \
|
2022-11-14 21:41:36 +00:00
|
|
|
-Denable-macos-sdk \
|
|
|
|
-Dstatic-llvm \
|
2023-04-17 06:48:42 +00:00
|
|
|
-Dskip-non-native \
|
2024-08-18 13:20:55 +00:00
|
|
|
--search-prefix "$PREFIX"
|