Skip to content

Commit 1728fc6

Browse files
authored
Merge pull request #22359 from apple/revert-22346-libcxx
Revert "[build-script] Add Product for libc++"
2 parents 1b07ec8 + 4587ba3 commit 1728fc6

File tree

5 files changed

+0
-26
lines changed

5 files changed

+0
-26
lines changed

utils/build-presets.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,6 @@ install-libicu
730730
install-prefix=/usr
731731
swift-install-components=autolink-driver;compiler;clang-resource-dir-symlink;stdlib;swift-remote-mirror;sdk-overlay;parser-lib;license;sourcekit-inproc
732732
llvm-install-components=llvm-cov;llvm-profdata;IndexStore;clang;clang-headers;compiler-rt;clangd
733-
install-libcxx
734733
build-swift-static-stdlib
735734
build-swift-static-sdk-overlay
736735
build-swift-stdlib-unittest-extra
@@ -1083,7 +1082,6 @@ reconfigure
10831082

10841083
swift-install-components=compiler;clang-resource-dir-symlink;stdlib;sdk-overlay;parser-lib;license;sourcekit-xpc-service;swift-remote-mirror;swift-remote-mirror-headers
10851084
llvm-install-components=llvm-cov;llvm-profdata;IndexStore;clang;clang-headers;compiler-rt;clangd
1086-
install-libcxx
10871085

10881086
# Path to the .tar.gz package we would create.
10891087
installable-package=%(installable_package)s

utils/build-script

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,6 @@ class BuildScriptInvocation(object):
841841
product_classes = []
842842
product_classes.append(products.CMark)
843843
product_classes.append(products.LLVM)
844-
product_classes.append(products.LibCXX)
845844
if self.args.build_libicu:
846845
product_classes.append(products.LibICU)
847846
product_classes.append(products.Swift)

utils/build-script-impl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ KNOWN_SETTINGS=(
208208
install-swiftevolve "" "whether to install the swift-evolve tool"
209209
install-xctest "" "whether to install xctest"
210210
install-foundation "" "whether to install foundation"
211-
install-libcxx "" "whether to install libc++"
212211
install-libdispatch "" "whether to install libdispatch"
213212
install-libicu "" "whether to install libicu"
214213
install-playgroundsupport "" "whether to install PlaygroundSupport"
@@ -3512,9 +3511,6 @@ for host in "${ALL_HOSTS[@]}"; do
35123511
INSTALL_TARGETS=install-$(echo ${LLVM_INSTALL_COMPONENTS} | sed -E 's/;/ install-/g')
35133512
;;
35143513
libcxx)
3515-
if [[ -z "${INSTALL_LIBCXX}" ]] ; then
3516-
continue
3517-
fi
35183514
INSTALL_TARGETS=install-cxx-headers
35193515
;;
35203516
swift)

utils/swift_build_support/swift_build_support/products/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
from .cmark import CMark
1414
from .foundation import Foundation
15-
from .libcxx import LibCXX
1615
from .libdispatch import LibDispatch
1716
from .libicu import LibICU
1817
from .llbuild import LLBuild
@@ -29,7 +28,6 @@
2928
'CMark',
3029
'Ninja',
3130
'Foundation',
32-
'LibCXX',
3331
'LibDispatch',
3432
'LibICU',
3533
'LLBuild',

utils/swift_build_support/swift_build_support/products/libcxx.py

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)