Chromium 138.0.7204.183
This commit is contained in:
parent
7c0b566a47
commit
404c44c8fa
117 changed files with 122161 additions and 0 deletions
35
chromium-lts/fix-unknown-warning-option-messages.diff
Normal file
35
chromium-lts/fix-unknown-warning-option-messages.diff
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
Index: chromium-128.0.6613.113/build/config/compiler/BUILD.gn
|
||||
===================================================================
|
||||
--- chromium-128.0.6613.113.orig/build/config/compiler/BUILD.gn
|
||||
+++ chromium-128.0.6613.113/build/config/compiler/BUILD.gn
|
||||
@@ -1844,7 +1844,7 @@ config("default_warnings") {
|
||||
|
||||
# -Wno-class-memaccess warns about hash table and vector in blink.
|
||||
# But the violation is intentional.
|
||||
- if (!is_nacl) {
|
||||
+ if ((!is_nacl) && (current_cpu != "ppc64")) {
|
||||
cflags_cc += [ "-Wno-class-memaccess" ]
|
||||
}
|
||||
|
||||
@@ -1854,7 +1854,9 @@ config("default_warnings") {
|
||||
|
||||
# Don't warn about "maybe" uninitialized. Clang doesn't include this
|
||||
# in -Wall but gcc does, and it gives false positives.
|
||||
- cflags += [ "-Wno-maybe-uninitialized" ]
|
||||
+ if (current_cpu != "ppc64") {
|
||||
+ cflags += [ "-Wno-maybe-uninitialized" ]
|
||||
+ }
|
||||
cflags += [ "-Wno-deprecated-declarations" ]
|
||||
|
||||
# -Wcomment gives too many false positives in the case a
|
||||
@@ -1865,7 +1867,9 @@ config("default_warnings") {
|
||||
|
||||
# -Wpacked-not-aligned complains all generated mojom-shared-internal.h
|
||||
# files.
|
||||
- cflags += [ "-Wno-packed-not-aligned" ]
|
||||
+ if (current_cpu != "ppc64") {
|
||||
+ cflags += [ "-Wno-packed-not-aligned" ]
|
||||
+ }
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue