1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
#!/bin/sh
set -eux
build() {
mkdir -p "build_$1"
cd "build_$1"
cmake \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_OSX_DEPLOYMENT_TARGET="10.15" \
-D CMAKE_OSX_ARCHITECTURES="$1" \
-D CMAKE_SYSTEM_PROCESSOR="$1" \
-D DEPS=DOWNLOAD \
-D ENABLE_TESTING=OFF \
..
cmake --build .
cd ..
}
FILES=""
set -- x86_64 arm64
for i in "$@"; do
echo "Building $i"
build "$i"
FILES="${FILES} build_$i/ccache"
done
mkdir -p install
lipo -create $FILES -output install/ccache
lipo -info install/ccache
find install -ls
|