mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Swift class metadata has a bit to distinguish it from non-Swift Objective-C classes. The stable ABI will use a different bit so that stable Swift and pre-stable Swift can be distinguished from each other. No bits are actually changed yet. Enabling the new bit needs to wait for other coordination such as libobjc. rdar://35767811
14 lines
312 B
C
14 lines
312 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 SWIFT_HAVE_WORKING_STD_REGEX 1
|
|
|
|
#cmakedefine HAVE_UNICODE_LIBEDIT 1
|
|
|
|
#cmakedefine01 SWIFT_DARWIN_ENABLE_STABLE_ABI_BIT
|
|
|
|
#endif // SWIFT_CONFIG_H
|