Skip to content

Commit 20b9a61

Browse files
committed
---
yaml --- r: 349362 b: refs/heads/master-next c: aad01f7 h: refs/heads/master
1 parent 4ef33aa commit 20b9a61

File tree

11 files changed

+30
-3
lines changed

11 files changed

+30
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
refs/heads/master: 3574c513bbc5578dd9346b4ea9ab5995c5927bb5
3-
refs/heads/master-next: 226cd140b9414cea26e4f43260502839f36bfae4
3+
refs/heads/master-next: aad01f7c3085b04e1cfcf570fe223302dd9d6a60
44
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
55
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea
66
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-b: 66d897bfcf64a82cb9a87f5e663d889189d06d07

branches/master-next/include/swift/AST/NameLookupTypeIDZone.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ SWIFT_TYPEID(ExtendedNominalRequest)
2121
SWIFT_TYPEID(SelfBoundsFromWhereClauseRequest)
2222
SWIFT_TYPEID(TypeDeclsFromWhereClauseRequest)
2323
SWIFT_TYPEID(CustomAttrNominalRequest)
24-
SWIFT_TYPEID(GetDestructorRequest)
24+
SWIFT_TYPEID(GetDestructorRequest)

branches/master-next/utils/build-presets.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -740,6 +740,7 @@ install-xctest
740740
install-libicu
741741
install-prefix=/usr
742742
install-libcxx
743+
install-sourcekit-lsp
743744
build-swift-static-stdlib
744745
build-swift-static-sdk-overlay
745746
build-swift-stdlib-unittest-extra
@@ -1067,7 +1068,6 @@ enable-asan
10671068
indexstore-db=0
10681069
sourcekit-lsp=0
10691070

1070-
10711071
# This does not currently pass due to leakers in the optimizer.
10721072
[preset: buildbot_incremental_linux,lsan,tools=RDA,stdlib=RDA,test=no]
10731073
build-subdir=buildbot_incremental_lsan
@@ -1150,6 +1150,7 @@ install-skstresstester
11501150
install-swiftevolve
11511151
install-playgroundsupport
11521152
install-libcxx
1153+
install-sourcekit-lsp
11531154

11541155
install-destdir=%(install_destdir)s
11551156

branches/master-next/utils/build-script

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -793,6 +793,7 @@ class BuildScriptInvocation(object):
793793
host_target, product_name))
794794
product.build(host_target)
795795
product.test(host_target)
796+
product.install(host_target)
796797

797798
# Extract symbols...
798799
for host_target in all_hosts:

branches/master-next/utils/build_swift/driver_arguments.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,8 @@ def create_argument_parser():
562562
help='build IndexStoreDB')
563563
option(['--sourcekit-lsp'], toggle_true('build_sourcekitlsp'),
564564
help='build SourceKitLSP')
565+
option(['--install-sourcekit-lsp'], toggle_true('install_sourcekitlsp'),
566+
help='install SourceKitLSP')
565567
option(['--toolchain-benchmarks'],
566568
toggle_true('build_toolchainbenchmarks'),
567569
help='build Swift Benchmarks using swiftpm against the just built '

branches/master-next/utils/build_swift/tests/expected_options.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@
8888
'build_swiftevolve': False,
8989
'build_indexstoredb': False,
9090
'build_sourcekitlsp': False,
91+
'install_sourcekitlsp': False,
9192
'build_toolchainbenchmarks': False,
9293
'build_tvos': True,
9394
'build_tvos_device': False,
@@ -459,6 +460,7 @@ class IgnoreOption(_BaseOption):
459460
EnableOption('--libicu', dest='build_libicu'),
460461
EnableOption('--indexstore-db', dest='build_indexstoredb'),
461462
EnableOption('--sourcekit-lsp', dest='build_sourcekitlsp'),
463+
EnableOption('--install-sourcekit-lsp', dest='install_sourcekitlsp'),
462464
EnableOption('--toolchain-benchmarks', dest='build_toolchainbenchmarks'),
463465
EnableOption('--tsan-libdispatch-test'),
464466
EnableOption('--long-test'),

branches/master-next/utils/swift_build_support/swift_build_support/products/benchmarks.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ def test(self, host_target):
4545
bench_Osize = os.path.join(self.build_dir, 'bin', 'Benchmark_Osize')
4646
shell.call([bench_Osize] + cmdline)
4747

48+
def install(self, host_target):
49+
pass
50+
4851

4952
def run_build_script_helper(host_target, product, args):
5053
toolchain_path = args.install_destdir

branches/master-next/utils/swift_build_support/swift_build_support/products/indexstoredb.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ def test(self, host_target):
3434
if self.args.test and self.args.test_indexstoredb:
3535
run_build_script_helper('test', host_target, self, self.args)
3636

37+
def install(self, host_target):
38+
pass
39+
3740

3841
def run_build_script_helper(action, host_target, product, args):
3942
script_path = os.path.join(

branches/master-next/utils/swift_build_support/swift_build_support/products/product.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,13 @@ def test(self, host_target):
5656
"""
5757
raise NotImplementedError
5858

59+
def install(self, host_target):
60+
"""install() -> void
61+
62+
Install to the toolchain, for a non-build-script-impl product.
63+
"""
64+
raise NotImplementedError
65+
5966
def __init__(self, args, toolchain, source_dir, build_dir):
6067
self.args = args
6168
self.toolchain = toolchain

branches/master-next/utils/swift_build_support/swift_build_support/products/sourcekitlsp.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,8 @@ def test(self, host_target):
3131
if self.args.test and self.args.test_sourcekitlsp:
3232
indexstoredb.run_build_script_helper(
3333
'test', host_target, self, self.args)
34+
35+
def install(self, host_target):
36+
if self.args.install_sourcekitlsp:
37+
indexstoredb.run_build_script_helper(
38+
'install', host_target, self, self.args)

branches/master-next/utils/swift_build_support/swift_build_support/products/tsan_libdispatch.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,6 @@ def test(self, host_target):
6666

6767
with shell.pushd(self.build_dir):
6868
shell.call(cmd, env=env)
69+
70+
def install(self, host_target):
71+
pass

0 commit comments

Comments
 (0)