You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: utils/build-script-impl
+2-70Lines changed: 2 additions & 70 deletions
Original file line number
Diff line number
Diff line change
@@ -181,6 +181,7 @@ KNOWN_SETTINGS=(
181
181
install-libdispatch """whether to install libdispatch"
182
182
darwin-install-extract-symbols """whether to extract symbols with dsymutil during installations"
183
183
host-target """The host target. LLVM, Clang, and Swift will be built for this target. The built LLVM and Clang will be used to compile Swift for the cross-compilation targets. **This argument is required**"
184
+
stdlib-deployment-targets """The space separated list of stdlib targets to build"
184
185
cross-compile-deployment-targets """space-separated list of targets to cross-compile Swift for"
185
186
cross-compile-sysroot """sysroot to use when cross-compiling"
186
187
cross-compile-toolchain-bin """toolchain binary dir to use when cross-compiling"
@@ -816,76 +817,6 @@ function is_cross_tools_deployment_target() {
816
817
done
817
818
}
818
819
819
-
# A list of deployment targets that we compile or cross-compile the
820
-
# Swift standard library for.
821
-
STDLIB_DEPLOYMENT_TARGETS=()
822
-
case"$(uname -s -m)"in
823
-
Linux\ x86_64)
824
-
STDLIB_DEPLOYMENT_TARGETS=(
825
-
"linux-x86_64"
826
-
)
827
-
;;
828
-
Linux\ armv6*)
829
-
STDLIB_DEPLOYMENT_TARGETS=(
830
-
"linux-armv6"
831
-
)
832
-
;;
833
-
Linux\ armv7*)
834
-
STDLIB_DEPLOYMENT_TARGETS=(
835
-
"linux-armv7"
836
-
)
837
-
;;
838
-
Linux\ aarch64)
839
-
STDLIB_DEPLOYMENT_TARGETS=(
840
-
"linux-aarch64"
841
-
)
842
-
;;
843
-
Linux\ ppc64)
844
-
STDLIB_DEPLOYMENT_TARGETS=(
845
-
"linux-powerpc64"
846
-
)
847
-
;;
848
-
Linux\ ppc64le)
849
-
STDLIB_DEPLOYMENT_TARGETS=(
850
-
"linux-powerpc64le"
851
-
)
852
-
;;
853
-
Darwin\ x86_64)
854
-
STDLIB_DEPLOYMENT_TARGETS=(
855
-
"macosx-x86_64"
856
-
"iphonesimulator-i386"
857
-
"iphonesimulator-x86_64"
858
-
"appletvsimulator-x86_64"
859
-
"watchsimulator-i386"
860
-
861
-
# Put iOS native targets last so that we test them last (it takes a
0 commit comments