2022-11-14 21:41:36 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Requires cmake ninja-build
|
|
|
|
|
|
|
|
set -x
|
|
|
|
set -e
|
|
|
|
|
2022-11-14 23:04:01 +00:00
|
|
|
ARCH="$(uname -m)"
|
2022-11-14 21:41:36 +00:00
|
|
|
TARGET="$ARCH-linux-musl"
|
|
|
|
MCPU="baseline"
|
2022-11-22 03:19:44 +00:00
|
|
|
CACHE_BASENAME="zig+llvm+lld+clang-$TARGET-0.11.0-dev.256+271cc52a1"
|
2022-11-14 23:04:01 +00:00
|
|
|
PREFIX="$HOME/deps/$CACHE_BASENAME"
|
2022-11-14 21:41:36 +00:00
|
|
|
ZIG="$PREFIX/bin/zig"
|
|
|
|
|
2022-11-22 21:13:58 +00:00
|
|
|
export PATH="$HOME/deps/wasmtime-v2.0.2-$ARCH-linux:$PATH"
|
2022-11-14 21:41:36 +00:00
|
|
|
|
2022-11-15 00:39:07 +00:00
|
|
|
# Make the `zig version` number consistent.
|
|
|
|
# This will affect the cmake command below.
|
|
|
|
git config core.abbrev 9
|
|
|
|
git fetch --unshallow || true
|
|
|
|
git fetch --tags
|
|
|
|
|
|
|
|
export CC="$ZIG cc -target $TARGET -mcpu=$MCPU"
|
|
|
|
export CXX="$ZIG c++ -target $TARGET -mcpu=$MCPU"
|
|
|
|
|
2022-11-22 00:07:33 +00:00
|
|
|
rm -rf build-release
|
2022-11-14 21:41:36 +00:00
|
|
|
mkdir build-release
|
|
|
|
cd build-release
|
|
|
|
cmake .. \
|
|
|
|
-DCMAKE_INSTALL_PREFIX="stage3-release" \
|
|
|
|
-DCMAKE_PREFIX_PATH="$PREFIX" \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DZIG_TARGET_TRIPLE="$TARGET" \
|
|
|
|
-DZIG_TARGET_MCPU="$MCPU" \
|
|
|
|
-DZIG_STATIC=ON \
|
|
|
|
-GNinja
|
|
|
|
|
2022-11-15 00:39:07 +00:00
|
|
|
# Now cmake will use zig as the C/C++ compiler. We reset the environment variables
|
|
|
|
# so that installation and testing do not get affected by them.
|
|
|
|
unset CC
|
|
|
|
unset CXX
|
|
|
|
|
2022-11-14 21:41:36 +00:00
|
|
|
ninja install
|
|
|
|
|
2022-11-22 21:13:58 +00:00
|
|
|
echo "Looking for non-conforming code formatting..."
|
|
|
|
stage3-release/bin/zig fmt --check .. \
|
|
|
|
--exclude ../test/cases/ \
|
|
|
|
--exclude ../build-release
|
|
|
|
|
|
|
|
# simultaneously test building self-hosted without LLVM and with 32-bit arm
|
|
|
|
stage3-release/bin/zig build -Dtarget=arm-linux-musleabihf
|
|
|
|
|
2022-11-14 23:04:01 +00:00
|
|
|
# TODO: add -fqemu back to this line
|
|
|
|
|
2022-11-14 21:41:36 +00:00
|
|
|
stage3-release/bin/zig build test docs \
|
|
|
|
-fwasmtime \
|
|
|
|
-Dstatic-llvm \
|
|
|
|
-Dtarget=native-native-musl \
|
|
|
|
--search-prefix "$PREFIX" \
|
|
|
|
--zig-lib-dir "$(pwd)/../lib"
|
|
|
|
|
2022-11-22 21:13:58 +00:00
|
|
|
# Look for HTML errors.
|
2022-11-22 22:13:42 +00:00
|
|
|
tidy --drop-empty-elements no -qe ../zig-cache/langref.html
|
2022-11-22 21:13:58 +00:00
|
|
|
|
2022-11-14 21:41:36 +00:00
|
|
|
# Produce the experimental std lib documentation.
|
2022-11-23 04:08:09 +00:00
|
|
|
stage3-release/bin/zig test ../lib/std/std.zig -femit-docs -fno-emit-bin --zig-lib-dir ../lib
|