aboutsummaryrefslogtreecommitdiffhomepage
path: root/gn/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'gn/BUILD.gn')
-rw-r--r--gn/BUILD.gn7
1 files changed, 2 insertions, 5 deletions
diff --git a/gn/BUILD.gn b/gn/BUILD.gn
index 614a069dff..0ae8eeca0e 100644
--- a/gn/BUILD.gn
+++ b/gn/BUILD.gn
@@ -83,11 +83,8 @@ config("default") {
"-Wno-unknown-warning-option", # Let older Clangs ignore newer Clangs' warnings.
]
- if (is_android && target_cpu == "x86") {
- # Clang seems to think new/malloc will only be 4-byte aligned on x86 Android.
- # We're pretty sure it's actually 8-byte alignment.
- cflags += [ "-Wno-over-aligned" ]
- }
+ # High priority to fix!
+ cflags += [ "-Wno-over-aligned" ]
cflags += [
"-Wno-cast-align",