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 253fdc4 commit 280555eCopy full SHA for 280555e
cc/toolchains/gcc_arm_gnu_8_3/config.bzl
@@ -106,6 +106,7 @@ def _impl(ctx):
106
flags = [
107
"--sysroot={}".format(ctx.attr.sysroot),
108
"-no-canonical-prefixes",
109
+ "-fno-canonical-system-headers",
110
# Reproducibility
111
"-Wno-builtin-macro-redefined",
112
"-D__DATE__=\"redacted\"",
cc/toolchains/gcc_arm_gnu_8_3/swift_custom_features.bzl
@@ -41,9 +41,12 @@ _invalid_flags = [
41
"-Wunused-const-variable",
42
"-Wconversion",
43
"-Wsign-conversion",
44
+ "-Wfloat-conversion",
45
]
46
-_extra_flags = []
47
+_extra_flags = [
48
+ "-Wno-float-conversion",
49
+]
50
51
52
_all_compile_actions = [
0 commit comments