Skip to content

Commit 3d9573f

Browse files
committed
Merge branch 'master' into warn-on-empty-optionset-static-constants
2 parents cba8684 + 6acf8db commit 3d9573f

File tree

470 files changed

+13195
-7945
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

470 files changed

+13195
-7945
lines changed

CMakeLists.txt

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ else()
2020
# Make a job pool for things that can't yet be distributed
2121
cmake_host_system_information(
2222
RESULT localhost_logical_cores QUERY NUMBER_OF_LOGICAL_CORES)
23-
set_property(GLOBAL PROPERTY JOB_POOLS local_jobs=${localhost_logical_cores})
23+
set_property(GLOBAL APPEND PROPERTY JOB_POOLS local_jobs=${localhost_logical_cores})
2424
# Put linking in that category
2525
set(CMAKE_JOB_POOL_LINK local_jobs)
2626
endif()
@@ -1096,12 +1096,6 @@ endif()
10961096
# declares the swift-stdlib-* set of targets. These targets will then
10971097
# implicitly depend on any targets declared with IS_STDLIB.
10981098
#
1099-
# One such library that declares IS_STDLIB is SwiftSyntax, living in
1100-
# tools/SwiftSyntax. If we include stdlib/ after tools/,
1101-
# the swift-stdlib-* set of targets will not have been generated yet,
1102-
# causing the implicit dependency for SwiftSyntax to silently not be
1103-
# created. This then will cause SwiftSyntax to fail to build.
1104-
#
11051099
# https://bugs.swift.org/browse/SR-5975
11061100
if(SWIFT_BUILD_STDLIB)
11071101
add_subdirectory(stdlib)
@@ -1126,7 +1120,7 @@ add_subdirectory(include)
11261120

11271121
if(SWIFT_INCLUDE_TOOLS)
11281122
add_subdirectory(lib)
1129-
1123+
11301124
# Always include this after including stdlib/!
11311125
# Refer to the large comment above the add_subdirectory(stdlib) call.
11321126
# https://bugs.swift.org/browse/SR-5975

benchmark/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ set(SWIFT_BENCH_MODULES
5151
single-source/CSVParsing
5252
single-source/Calculator
5353
single-source/CaptureProp
54+
single-source/ChaCha
5455
single-source/ChainedFilterMap
5556
single-source/CharacterLiteralsLarge
5657
single-source/CharacterLiteralsSmall

benchmark/scripts/test_Benchmark_Driver.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
import os
1818
import time
1919
import unittest
20-
2120
from StringIO import StringIO
2221
from imp import load_source
2322

benchmark/scripts/test_utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
import logging
2626
import sys
27-
2827
from StringIO import StringIO
2928
from contextlib import contextmanager
3029

0 commit comments

Comments
 (0)