mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Remove the option that explicitly enables concurrency back-deployment, and instead always enable its support in the compiler. Remove the use of the extraneous CMake option as well.
18 lines
394 B
C
18 lines
394 B
C
// This file is processed by CMake.
|
|
// See https://cmake.org/cmake/help/v3.0/command/configure_file.html.
|
|
|
|
#ifndef SWIFT_CONFIG_H
|
|
#define SWIFT_CONFIG_H
|
|
|
|
#cmakedefine HAVE_WAIT4 1
|
|
|
|
#cmakedefine HAVE_PROC_PID_RUSAGE 1
|
|
|
|
#cmakedefine01 SWIFT_IMPLICIT_CONCURRENCY_IMPORT
|
|
|
|
#cmakedefine01 SWIFT_ENABLE_EXPERIMENTAL_DISTRIBUTED
|
|
|
|
#cmakedefine01 SWIFT_ENABLE_GLOBAL_ISEL_ARM64
|
|
|
|
#endif // SWIFT_CONFIG_H
|