mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-06 06:38:20 +00:00
27 lines
975 B
Bash
Executable File
27 lines
975 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# Intended for use in Alpine containers, see the "nightly" Github action for a list of dependencies
|
|
|
|
CXX="clang++-20"
|
|
LLVM_CONFIG="llvm-config-20"
|
|
|
|
DISABLED_WARNINGS="-Wno-switch -Wno-macro-redefined -Wno-unused-value"
|
|
|
|
if [ -d ".git" ] && [ -n "$(command -v git)" ]; then
|
|
GIT_SHA=$(git show --pretty='%h' --no-patch --no-notes HEAD)
|
|
GIT_DATE=$(git show "--pretty=%cd" "--date=format:%Y-%m" --no-patch --no-notes HEAD)
|
|
CPPFLAGS="$CPPFLAGS -DGIT_SHA=\"$GIT_SHA\""
|
|
else
|
|
GIT_DATE=$(date +"%Y-%m")
|
|
fi
|
|
CPPFLAGS="$CPPFLAGS -DODIN_VERSION_RAW=\"dev-$GIT_DATE\""
|
|
CXXFLAGS="-std=c++14 $($LLVM_CONFIG --cxxflags --ldflags)"
|
|
|
|
LDFLAGS="-static -lm -lzstd -lz -lffi -pthread -ldl -fuse-ld=mold"
|
|
LDFLAGS="$LDFLAGS $($LLVM_CONFIG --link-static --ldflags --libs --system-libs --libfiles)"
|
|
LDFLAGS="$LDFLAGS -Wl,-rpath=\$ORIGIN"
|
|
|
|
EXTRAFLAGS="-DNIGHTLY -O3"
|
|
|
|
set -x
|
|
$CXX src/main.cpp src/libtommath.cpp $DISABLED_WARNINGS $CPPFLAGS $CXXFLAGS $EXTRAFLAGS $LDFLAGS -o odin
|