File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed
swift_build_support/swift_build_support/products Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -841,6 +841,7 @@ 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 )
844
845
if self .args .build_libicu :
845
846
product_classes .append (products .LibICU )
846
847
product_classes .append (products .Swift )
Original file line number Diff line number Diff line change 13
13
from .cmark import CMark
14
14
from .foundation import Foundation
15
15
from .libdispatch import LibDispatch
16
+ from .libcxx import LibCXX
16
17
from .libicu import LibICU
17
18
from .llbuild import LLBuild
18
19
from .lldb import LLDB
29
30
'Ninja' ,
30
31
'Foundation' ,
31
32
'LibDispatch' ,
33
+ 'LibCXX' ,
32
34
'LibICU' ,
33
35
'LLBuild' ,
34
36
'LLDB' ,
Original file line number Diff line number Diff line change
1
+ # swift_build_support/products/libcxx.py -------------------------*- python -*-
2
+ #
3
+ # This source file is part of the Swift.org open source project
4
+ #
5
+ # Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
6
+ # Licensed under Apache License v2.0 with Runtime Library Exception
7
+ #
8
+ # See https://swift.org/LICENSE.txt for license information
9
+ # See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
10
+ #
11
+ # ----------------------------------------------------------------------------
12
+
13
+ from . import product
14
+
15
+
16
+ class LibCXX (product .Product ):
17
+ pass
You can’t perform that action at this time.
0 commit comments