Files
repertory/support/3rd_party/icu_configure.sh
Scott E. Graves e3dd7c9791
Some checks failed
BlockStorage/repertory/pipeline/head There was a failure building this commit
updated build system
2025-09-12 10:53:42 -05:00

17 lines
394 B
Bash

#!/usr/bin/env bash
if [ "$(uname -m)" == "arm64" ] &&
[ "${PROJECT_IS_ARM64}" == "0" ]; then
HOST_CFG="--host=x86_64-apple-darwin"
export CC="clang -arch x86_64"
export CXX="clang++ -arch x86_64"
fi
CXXFLAGS="-std=gnu++17 -march=$1 -mtune=generic" ./configure \
--disable-samples \
--disable-tests \
--enable-shared=$3 \
--enable-static=yes \
--prefix="$2" \
${HOST_CFG}