Files
nixpkgs/pkgs/by-name/an/angle/fix-uninitialized-const-pointer-error-001.patch

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
482 B
Diff
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
index 0c04c9036..1f32ec562 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -1992,6 +1992,11 @@ config("tot_warnings") {
"-Wno-character-conversion",
]
}
+
+ cflags += [
+ # TODO(crbug.com/432275627): Fix and re-enable.
+ "-Wno-uninitialized-const-pointer"
+ ]
}
# default_warnings ------------------------------------------------------------