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
23 lines
574 B
CMake
23 lines
574 B
CMake
add_subdirectory(ARC)
|
|
add_subdirectory(Analysis)
|
|
add_subdirectory(IPO)
|
|
add_subdirectory(LoopTransforms)
|
|
add_subdirectory(Mandatory)
|
|
add_subdirectory(PassManager)
|
|
add_subdirectory(SILCombiner)
|
|
add_subdirectory(Transforms)
|
|
add_subdirectory(UtilityPasses)
|
|
add_subdirectory(Utils)
|
|
add_swift_library(swiftSILOptimizer STATIC
|
|
${ARC_SOURCES}
|
|
${ANALYSIS_SOURCES}
|
|
${SILCOMBINER_SOURCES}
|
|
${UTILITYPASSES_SOURCES}
|
|
${UTILS_SOURCES}
|
|
${PASSMANAGER_SOURCES}
|
|
${LOOPTRANSFORMS_SOURCES}
|
|
${MANDATORY_SOURCES}
|
|
${TRANSFORMS_SOURCES}
|
|
${IPO_SOURCES}
|
|
LINK_LIBRARIES swiftSIL)
|