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.
1 parent f4104e2 commit 4a03976Copy full SHA for 4a03976
.bazelrc
@@ -1,4 +1,3 @@
1
-# -fno-rtti is required by LLVM/Swift
2
-build --repo_env=CC=clang --repo_env=CXX=clang++ --copt="-std=c++17" --copt="-fno-rtti"
+build --repo_env=CC=clang --repo_env=CXX=clang++ --copt="-std=c++17"
3
4
try-import %workspace%/local.bazelrc
swift/extractor/BUILD.bazel
@@ -14,6 +14,10 @@ cc_binary(
14
"SwiftExtractorConfiguration.h",
15
"main.cpp",
16
],
17
+ copts = [
18
+ # Required by LLVM/Swift
19
+ "-fno-rtti",
20
+ ],
21
target_compatible_with = select({
22
"@platforms//os:linux": [],
23
"@platforms//os:macos": [],
0 commit comments