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
20 lines
648 B
CMake
20 lines
648 B
CMake
|
|
if (SWIFT_INCLUDE_TESTS)
|
|
add_swift_library(swiftSwiftReflectionTest ${SWIFT_STDLIB_LIBRARY_BUILD_TYPES} IS_STDLIB
|
|
SwiftReflectionTest.swift
|
|
SWIFT_MODULE_DEPENDS Darwin
|
|
TARGET_SDKS ALL_APPLE_PLATFORMS
|
|
INSTALL_IN_COMPONENT stdlib-experimental)
|
|
|
|
foreach(SDK ${SWIFT_SDKS})
|
|
if("${SDK}" IN_LIST SWIFT_APPLE_PLATFORMS)
|
|
foreach(ARCH ${SWIFT_SDK_${SDK}_ARCHITECTURES})
|
|
set(VARIANT_SUFFIX "-${SWIFT_SDK_${SDK}_LIB_SUBDIR}-${ARCH}")
|
|
add_dependencies(
|
|
"swiftSwiftReflectionTest${VARIANT_SUFFIX}"
|
|
"swift-reflection-test${VARIANT_SUFFIX}")
|
|
endforeach()
|
|
endif()
|
|
endforeach()
|
|
endif()
|