-
-
Notifications
You must be signed in to change notification settings - Fork 341
/
Copy pathbuild-xcframework.sh
executable file
·134 lines (110 loc) · 5.65 KB
/
build-xcframework.sh
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#!/bin/bash
set -eou pipefail
args="${1:-}"
if [ "$args" = "iOSOnly" ]; then
sdks=( iphoneos iphonesimulator )
elif [ "$args" = "gameOnly" ]; then
sdks=( iphoneos iphonesimulator macosx )
else
sdks=( iphoneos iphonesimulator macosx appletvos appletvsimulator watchos watchsimulator xros xrsimulator )
fi
rm -rf Carthage/
mkdir Carthage
ALL_SDKS=$(xcodebuild -showsdks)
generate_xcframework() {
local scheme="$1"
local suffix="${2:-}"
local MACH_O_TYPE="${3-mh_dylib}"
local configuration_suffix="${4-}"
local createxcframework="xcodebuild -create-xcframework "
local GCC_GENERATE_DEBUGGING_SYMBOLS="YES"
local resolved_configuration="Release$configuration_suffix"
local resolved_product_name="$scheme$configuration_suffix"
local OTHER_LDFLAGS=""
if [ "$MACH_O_TYPE" = "staticlib" ]; then
#For static framework we disabled symbols because they are not distributed in the framework causing warnings.
GCC_GENERATE_DEBUGGING_SYMBOLS="NO"
fi
rm -rf Carthage/DerivedData
for sdk in "${sdks[@]}"; do
if grep -q "${sdk}" <<< "$ALL_SDKS"; then
## watchos, watchsimulator dont support make_mergeable: ld: unknown option: -make_mergeable
if [[ "$sdk" == "watchos" || "$sdk" == "watchsimulator" ]]; then
OTHER_LDFLAGS=""
elif [ "$MACH_O_TYPE" != "staticlib" ]; then
OTHER_LDFLAGS="-Wl,-make_mergeable"
fi
set -o pipefail && NSUnbufferedIO=YES xcodebuild archive \
-project Sentry.xcodeproj/ \
-scheme "$scheme" \
-configuration "$resolved_configuration" \
-sdk "$sdk" \
-archivePath "./Carthage/archive/${scheme}${suffix}/${sdk}.xcarchive" \
CODE_SIGNING_REQUIRED=NO \
SKIP_INSTALL=NO \
CODE_SIGN_IDENTITY= \
CARTHAGE=YES \
MACH_O_TYPE="$MACH_O_TYPE" \
ENABLE_CODE_COVERAGE=NO \
GCC_GENERATE_DEBUGGING_SYMBOLS="$GCC_GENERATE_DEBUGGING_SYMBOLS" \
OTHER_LDFLAGS="$OTHER_LDFLAGS" 2>&1 | xcbeautify --preserve-unbeautified
createxcframework+="-framework Carthage/archive/${scheme}${suffix}/${sdk}.xcarchive/Products/Library/Frameworks/${resolved_product_name}.framework "
if [ "$MACH_O_TYPE" = "staticlib" ]; then
local infoPlist="Carthage/archive/${scheme}${suffix}/${sdk}.xcarchive/Products/Library/Frameworks/${resolved_product_name}.framework/Info.plist"
if [ ! -e "$infoPlist" ]; then
infoPlist="Carthage/archive/${scheme}${suffix}/${sdk}.xcarchive/Products/Library/Frameworks/${resolved_product_name}.framework/Resources/Info.plist"
fi
# This workaround is necessary to make Sentry Static framework to work
# More information in here: https://github.com/getsentry/sentry-cocoa/issues/3769
# The version 100 seems to work with all Xcode up to 15.4
plutil -replace "MinimumOSVersion" -string "100.0" "$infoPlist"
fi
if [ -d "Carthage/archive/${scheme}${suffix}/${sdk}.xcarchive/dSYMs/${resolved_product_name}.framework.dSYM" ]; then
# Has debug symbols
createxcframework+="-debug-symbols $(pwd -P)/Carthage/archive/${scheme}${suffix}/${sdk}.xcarchive/dSYMs/${resolved_product_name}.framework.dSYM "
fi
else
echo "${sdk} SDK not found"
fi
done
# for the case that watch* sdks are last in list
if [ "$MACH_O_TYPE" != "staticlib" ]; then
OTHER_LDFLAGS="-Wl,-make_mergeable"
fi
if [ "$args" != "iOSOnly" ]; then
#Create framework for mac catalyst
set -o pipefail && NSUnbufferedIO=YES xcodebuild \
-project Sentry.xcodeproj/ \
-scheme "$scheme" \
-configuration "$resolved_configuration" \
-sdk iphoneos \
-destination 'platform=macOS,variant=Mac Catalyst' \
-derivedDataPath ./Carthage/DerivedData \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGN_IDENTITY= \
CARTHAGE=YES \
MACH_O_TYPE="$MACH_O_TYPE" \
SUPPORTS_MACCATALYST=YES \
ENABLE_CODE_COVERAGE=NO \
GCC_GENERATE_DEBUGGING_SYMBOLS="$GCC_GENERATE_DEBUGGING_SYMBOLS" \
OTHER_LDFLAGS="$OTHER_LDFLAGS" 2>&1 | xcbeautify --preserve-unbeautified
if [ "$MACH_O_TYPE" = "staticlib" ]; then
local infoPlist="Carthage/DerivedData/Build/Products/$resolved_configuration-maccatalyst/${scheme}.framework/Resources/Info.plist"
plutil -replace "MinimumOSVersion" -string "100.0" "$infoPlist"
fi
createxcframework+="-framework Carthage/DerivedData/Build/Products/$resolved_configuration-maccatalyst/${resolved_product_name}.framework "
if [ -d "Carthage/DerivedData/Build/Products/$resolved_configuration-maccatalyst/${resolved_product_name}.framework.dSYM" ]; then
createxcframework+="-debug-symbols $(pwd -P)/Carthage/DerivedData/Build/Products/$resolved_configuration-maccatalyst/${resolved_product_name}.framework.dSYM "
fi
fi
createxcframework+="-output Carthage/${scheme}${suffix}.xcframework"
$createxcframework
}
generate_xcframework "Sentry" "-Dynamic"
if [ "$args" != "iOSOnly" ]; then
generate_xcframework "Sentry" "" staticlib
if [ "$args" != "gameOnly" ]; then
generate_xcframework "SentrySwiftUI"
generate_xcframework "Sentry" "-WithoutUIKitOrAppKit" mh_dylib WithoutUIKit
fi
fi