We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e731f01 + b708ed5 commit 38a8b00Copy full SHA for 38a8b00
docs/OpenBSD.md
@@ -82,6 +82,7 @@ $ ./utils/build-script \
82
-DSWIFT_BUILD_SOURCEKIT=OFF,\
83
-DSWIFT_BUILD_SYNTAXPARSERLIB=OFF,\
84
-DSWIFT_ENABLE_EXPERIMENTAL_CONCURRENCY=OFF,\
85
+ -DSWIFT_IMPLICIT_CONCURRENCY_IMPORT=OFF,\
86
-DSWIFT_USE_LINKER=lld,\
87
-DCMAKE_INSTALL_DIR=/usr/local"
88
```
lib/Frontend/Frontend.cpp
@@ -767,7 +767,7 @@ static bool shouldImportConcurrencyByDefault(const llvm::Triple &target) {
767
return true;
768
if (target.isOSLinux())
769
770
-#if SWIFT_ENABLE_EXPERIMENTAL_CONCURRENCY
+#if SWIFT_IMPLICIT_CONCURRENCY_IMPORT
771
if (target.isOSOpenBSD())
772
773
#endif
0 commit comments