Compare commits

..

No commits in common. "ceabd22b70b46bea23a085b2050b8b00096d382c" and "6f78d26ea1a4942a3319412f9449a406ed5c2af5" have entirely different histories.

3 changed files with 3 additions and 6 deletions

View File

@ -16,11 +16,8 @@ jobs:
echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories
echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
# determine appropriate clang version
RT_VERSION=$(apk add --simulate compiler-rt | grep -o "compiler-rt-[0-9]*" | grep -o "[0-9]*")
apk update apk update
apk add --no-cache llvm${RT_VERSION} clang${RT_VERSION} clang${RT_VERSION}-analyzer compiler-rt valgrind apk add --no-cache llvm19 clang19 clang19-analyzer compiler-rt valgrind
# Verify versions # Verify versions
echo "---------------------" echo "---------------------"

View File

@ -21,7 +21,7 @@ asan:
msan: msan:
make -rRf make/msan.mk all make -rRf make/msan.mk all
validate: asan msan debug release validate: asan msan debug
./validate.sh ./validate.sh
analyze: analyze:

View File

@ -1,4 +1,4 @@
CFLAGS?=-Wall -Wextra -Wpedantic -Werror -O2 -std=c23 -flto -fomit-frame-pointer -DNDEBUG -D_POSIX_C_SOURCE=200809L CFLAGS?=-Wall -Wextra -Wpedantic -O2 -std=c23 -flto -fomit-frame-pointer -DNDEBUG -D_POSIX_C_SOURCE=200809L
LDFLAGS?=-flto -s -Wl,--gc-sections LDFLAGS?=-flto -s -Wl,--gc-sections
BUILD_DIR?=build/release/ BUILD_DIR?=build/release/