mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2025-12-26 21:50:11 +00:00
Make it so that SDKs for other architectures can be easily installed and used for cross-compilation.
15 lines
435 B
Plaintext
15 lines
435 B
Plaintext
|
|
if [ x"$native_triple" != x"$swift_runtime_triple" ]; then
|
|
install_path=$install_path/$swift_runtime_triple
|
|
fi
|
|
install_path=$install_path/lib
|
|
|
|
for so in Foundation FoundationNetworking FoundationXML XCTest swiftCore swiftDispatch \
|
|
swiftDistributed swiftGlibc swiftRegexBuilder swiftRemoteMirror swiftSwiftOnoneSupport \
|
|
swift_Concurrency swift_Differentiation swift_RegexParser swift_StringProcessing
|
|
do
|
|
@COMMAND@
|
|
done
|
|
|
|
exit 0
|