"vscode:/vscode.git/clone" did not exist on "2b4ca6cf36c0dc31fdae7046433f4341f171026f"
build_darwin.sh 2.02 KB
Newer Older
Michael Yang's avatar
Michael Yang committed
1
2
#!/bin/sh

3
set -e
Michael Yang's avatar
Michael Yang committed
4

5
. $(dirname $0)/env.sh
Jeffrey Morgan's avatar
Jeffrey Morgan committed
6
7
8

mkdir -p dist

9
10
11
12
13
14
15
16
# These require Xcode v13 or older to target MacOS v11
# If installed to an alternate location use the following to enable
# export SDKROOT=/Applications/Xcode_12.5.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk
# export DEVELOPER_DIR=/Applications/Xcode_12.5.1.app/Contents/Developer
export CGO_CFLAGS=-mmacosx-version-min=11.3
export CGO_CXXFLAGS=-mmacosx-version-min=11.3
export CGO_LDFLAGS=-mmacosx-version-min=11.3

17
rm -rf llama/build dist/darwin-*
18
19
20

# Generate the universal ollama binary for stand-alone usage: metal + avx
echo "Building binary"
21
22
23
echo "Building darwin arm64"
GOOS=darwin ARCH=arm64 GOARCH=arm64 make -j 8 dist
echo "Building darwin amd64 with AVX enabled"
24
25
GOOS=darwin ARCH=amd64 GOARCH=amd64 CUSTOM_CPU_FLAGS="avx" make -j 8 dist_exe
lipo -create -output dist/ollama-darwin dist/darwin-arm64/bin/ollama dist/darwin-amd64/bin/ollama
26

27
28
29
30
31
32
33
34
35
36
37
38
39
40
# sign the binary and rename it
if [ -n "$APPLE_IDENTITY" ]; then
    codesign -f --timestamp -s "$APPLE_IDENTITY" --identifier ai.ollama.ollama --options=runtime dist/ollama-darwin
else
    echo "WARNING: Skipping code signing - set APPLE_IDENTITY"
fi
ditto -c -k --keepParent dist/ollama-darwin dist/temp.zip
if [ -n "$APPLE_IDENTITY" ]; then
    xcrun notarytool submit dist/temp.zip --wait --timeout 10m --apple-id $APPLE_ID --password $APPLE_PASSWORD --team-id $APPLE_TEAM_ID
fi
rm -f dist/temp.zip

# Build the app bundle
echo "Building app"
41
42
43
echo "Building darwin amd64 with runners"
rm dist/darwin-amd64/bin/ollama
GOOS=darwin ARCH=amd64 GOARCH=amd64 make -j 8 dist
44

45
# Generate the universal ollama binary for the app bundle: metal + no-avx
46
lipo -create -output dist/ollama dist/darwin-arm64/bin/ollama dist/darwin-amd64/bin/ollama
47

48
# build and optionally sign the mac app
Daniel Hiltgen's avatar
Daniel Hiltgen committed
49
npm install --prefix macapp
50
if [ -n "$APPLE_IDENTITY" ]; then
Daniel Hiltgen's avatar
Daniel Hiltgen committed
51
    npm run --prefix macapp make:sign
52
else 
Daniel Hiltgen's avatar
Daniel Hiltgen committed
53
    npm run --prefix macapp make
54
fi
Daniel Hiltgen's avatar
Daniel Hiltgen committed
55
cp macapp/out/make/zip/darwin/universal/Ollama-darwin-universal-$VERSION.zip dist/Ollama-darwin.zip
Jeffrey Morgan's avatar
Jeffrey Morgan committed
56