cocoapods-bb-PodAssistant 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abca444278895fb5f6e60dca3936dbe42e11f947c7871b87c275ce88979856d5
|
|
4
|
+
data.tar.gz: 6dc620a0003fea182fff13b4bf9476c6d65bee2a60815141f1cf7c1c7cf213af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7675227ade3264a24397840393cfde5d1fd432871f4de8f897c934de813bec10cd379aff65887790ec5f8db66d5e1666ec4376ca5b89d3601404fbaf7c7d247
|
|
7
|
+
data.tar.gz: 5e29e7fbd119f7ff88b4965555e302274ffc44c089da71712b2b7a8a11198d1e0ecac65ba10dd58f177b780a417998733628181c176dcd7b5e93745536d6253a
|
|
@@ -56,13 +56,16 @@ class PodPostInstaller
|
|
|
56
56
|
env.copyCocosPackage
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
|
-
#
|
|
59
|
+
# xcode_version = `xcrun xcodebuild -version | grep Xcode | cut -d' ' -f2`.to_f if xcode_version ≥ 15
|
|
60
|
+
# iOS17适配添加ld64 https://developer.apple.com/documentation/xcode-release-notes/xcode-15-release-notes
|
|
60
61
|
if (is_xcode15 == true) then
|
|
61
|
-
# xcode15
|
|
62
|
-
config.build_settings['OTHER_LDFLAGS'] = "$(inherited) -lxml2 -lz -ObjC -lstdc++ -
|
|
62
|
+
# c++ weak 标识 xcode15 -ld64 is deprecated, use -ld_classic instead
|
|
63
|
+
config.build_settings['OTHER_LDFLAGS'] = "$(inherited) -lxml2 -lz -ObjC -lstdc++ -Wl -ld_classic -weak_framework SwiftUI"
|
|
63
64
|
else
|
|
64
65
|
config.build_settings['OTHER_LDFLAGS'] = "$(inherited) -lxml2 -lz -ObjC -lstdc++"
|
|
65
66
|
end
|
|
67
|
+
otherLink_setting_value = config.build_settings['OTHER_LDFLAGS']
|
|
68
|
+
puts "OTHER_LDFLAGS Build Setting Value: #{otherLink_setting_value}".green
|
|
66
69
|
end
|
|
67
70
|
end
|
|
68
71
|
end
|