File: build-darwin-binary

package info (click to toggle)
ccache 4.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,188 kB
  • sloc: cpp: 47,282; asm: 28,570; sh: 8,674; ansic: 5,357; python: 685; perl: 68; makefile: 23
file content (33 lines) | stat: -rwxr-xr-x 591 bytes parent folder | download
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