File tree Expand file tree Collapse file tree 5 files changed +0
-26
lines changed
swift_build_support/swift_build_support/products Expand file tree Collapse file tree 5 files changed +0
-26
lines changed Original file line number Diff line number Diff line change @@ -730,7 +730,6 @@ install-libicu
730
730
install-prefix =/usr
731
731
swift-install-components =autolink-driver; compiler;clang-resource-dir-symlink;stdlib;swift-remote-mirror;sdk-overlay;parser-lib;license;sourcekit-inproc
732
732
llvm-install-components =llvm-cov; llvm-profdata;IndexStore;clang;clang-headers;compiler-rt;clangd
733
- install-libcxx
734
733
build-swift-static-stdlib
735
734
build-swift-static-sdk-overlay
736
735
build-swift-stdlib-unittest-extra
@@ -1083,7 +1082,6 @@ reconfigure
1083
1082
1084
1083
swift-install-components =compiler; clang-resource-dir-symlink;stdlib;sdk-overlay;parser-lib;license;sourcekit-xpc-service;swift-remote-mirror;swift-remote-mirror-headers
1085
1084
llvm-install-components =llvm-cov; llvm-profdata;IndexStore;clang;clang-headers;compiler-rt;clangd
1086
- install-libcxx
1087
1085
1088
1086
# Path to the .tar.gz package we would create.
1089
1087
installable-package =%(installable_package)s
Original file line number Diff line number Diff line change @@ -841,7 +841,6 @@ class BuildScriptInvocation(object):
841
841
product_classes = []
842
842
product_classes .append (products .CMark )
843
843
product_classes .append (products .LLVM )
844
- product_classes .append (products .LibCXX )
845
844
if self .args .build_libicu :
846
845
product_classes .append (products .LibICU )
847
846
product_classes .append (products .Swift )
Original file line number Diff line number Diff line change @@ -208,7 +208,6 @@ KNOWN_SETTINGS=(
208
208
install-swiftevolve " " " whether to install the swift-evolve tool"
209
209
install-xctest " " " whether to install xctest"
210
210
install-foundation " " " whether to install foundation"
211
- install-libcxx " " " whether to install libc++"
212
211
install-libdispatch " " " whether to install libdispatch"
213
212
install-libicu " " " whether to install libicu"
214
213
install-playgroundsupport " " " whether to install PlaygroundSupport"
@@ -3512,9 +3511,6 @@ for host in "${ALL_HOSTS[@]}"; do
3512
3511
INSTALL_TARGETS=install-$( echo ${LLVM_INSTALL_COMPONENTS} | sed -E ' s/;/ install-/g' )
3513
3512
;;
3514
3513
libcxx)
3515
- if [[ -z " ${INSTALL_LIBCXX} " ]] ; then
3516
- continue
3517
- fi
3518
3514
INSTALL_TARGETS=install-cxx-headers
3519
3515
;;
3520
3516
swift)
Original file line number Diff line number Diff line change 12
12
13
13
from .cmark import CMark
14
14
from .foundation import Foundation
15
- from .libcxx import LibCXX
16
15
from .libdispatch import LibDispatch
17
16
from .libicu import LibICU
18
17
from .llbuild import LLBuild
29
28
'CMark' ,
30
29
'Ninja' ,
31
30
'Foundation' ,
32
- 'LibCXX' ,
33
31
'LibDispatch' ,
34
32
'LibICU' ,
35
33
'LLBuild' ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments