mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
These changes caused a number of issues: 1. No debug info is emitted when a release-debug info compiler is built. 2. OS X deployment target specification is broken. 3. Swift options were broken without any attempt any recreating that functionality. The specific option in question is --force-optimized-typechecker. Such refactorings should be done in a fashion that does not break existing users and use cases. This reverts commite6ce2ff388. This reverts commite8645f3750. This reverts commit89b038ea7e. This reverts commit497cac64d9. This reverts commit953ad094da. This reverts commite096d1c033. rdar://30549345
30 lines
1.0 KiB
CMake
30 lines
1.0 KiB
CMake
set(swift_stdlib_unittest_compile_flags)
|
|
if(SWIFT_SERIALIZE_STDLIB_UNITTEST)
|
|
list(APPEND swift_stdlib_unittest_compile_flags "-Xfrontend" "-sil-serialize-all")
|
|
endif()
|
|
|
|
# TODO: support this on non-POSIX platforms. It cannot be currently as it
|
|
# depends on pthreads.
|
|
add_swift_library(swiftStdlibCollectionUnittest ${SWIFT_STDLIB_LIBRARY_BUILD_TYPES} IS_STDLIB
|
|
# This file should be listed the first. Module name is inferred from the
|
|
# filename.
|
|
StdlibCollectionUnittest.swift
|
|
|
|
CheckCollectionInstance.swift.gyb
|
|
CheckCollectionType.swift.gyb
|
|
CheckMutableCollectionType.swift.gyb
|
|
CheckRangeReplaceableCollectionType.swift
|
|
CheckRangeReplaceableSliceType.swift
|
|
CheckSequenceInstance.swift.gyb
|
|
CheckSequenceType.swift
|
|
LoggingWrappers.swift.gyb
|
|
MinimalCollections.swift.gyb
|
|
RangeSelection.swift
|
|
../../public/core/WriteBackMutableSlice.swift
|
|
|
|
SWIFT_MODULE_DEPENDS StdlibUnittest
|
|
SWIFT_COMPILE_FLAGS ${swift_stdlib_unittest_compile_flags}
|
|
TARGET_SDKS ALL_POSIX_PLATFORMS
|
|
INSTALL_IN_COMPONENT stdlib-experimental)
|
|
|