parent
b000a73579
commit
e1849be597
@ -1,3 +1,3 @@
|
|||||||
c200de9f287b8c1cb1998ba4bb3336cd957939fe SOURCES/chromium-122.0.6261.57-clean.tar.xz
|
62dd4bcdc7b0f4c0983c0168feb6a00de483da82 SOURCES/chromium-122.0.6261.69-clean.tar.xz
|
||||||
7e5d2c7864c5c83ec789b59c77cd9c20d2594916 SOURCES/linux-arm64-0.19.2.tgz
|
7e5d2c7864c5c83ec789b59c77cd9c20d2594916 SOURCES/linux-arm64-0.19.2.tgz
|
||||||
dea187019741602d57aaf189a80abba261fbd2aa SOURCES/linux-x64-0.19.2.tgz
|
dea187019741602d57aaf189a80abba261fbd2aa SOURCES/linux-x64-0.19.2.tgz
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
SOURCES/chromium-122.0.6261.57-clean.tar.xz
|
SOURCES/chromium-122.0.6261.69-clean.tar.xz
|
||||||
SOURCES/linux-arm64-0.19.2.tgz
|
SOURCES/linux-arm64-0.19.2.tgz
|
||||||
SOURCES/linux-x64-0.19.2.tgz
|
SOURCES/linux-x64-0.19.2.tgz
|
||||||
|
@ -0,0 +1,17 @@
|
|||||||
|
diff -up chromium-122.0.6261.57/build/config/compiler/BUILD.gn.me chromium-122.0.6261.57/build/config/compiler/BUILD.gn
|
||||||
|
--- chromium-122.0.6261.57/build/config/compiler/BUILD.gn.me 2024-02-23 12:32:11.248584653 +0100
|
||||||
|
+++ chromium-122.0.6261.57/build/config/compiler/BUILD.gn 2024-02-23 12:45:26.672302958 +0100
|
||||||
|
@@ -399,6 +399,13 @@ config("compiler") {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
+ if (is_clang) {
|
||||||
|
+ cflags += [ "-ftrivial-auto-var-init=zero" ]
|
||||||
|
+ if (!is_ubsan && !is_ubsan_security) {
|
||||||
|
+ cflags += [ "-fwrapv" ]
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
# Linker warnings.
|
||||||
|
if (fatal_linker_warnings && !is_apple && current_os != "aix" &&
|
||||||
|
current_os != "zos") {
|
@ -0,0 +1,13 @@
|
|||||||
|
diff -up chromium-122.0.6261.57/tools/json_to_struct/json_to_struct.py.me chromium-122.0.6261.57/tools/json_to_struct/json_to_struct.py
|
||||||
|
--- chromium-122.0.6261.57/tools/json_to_struct/json_to_struct.py.me 2024-02-23 12:04:45.451423995 +0100
|
||||||
|
+++ chromium-122.0.6261.57/tools/json_to_struct/json_to_struct.py 2024-02-23 12:18:04.099824392 +0100
|
||||||
|
@@ -124,7 +124,8 @@ def _GenerateH(basepath, fileroot, head,
|
||||||
|
f.write(u'#include <cstddef>\n')
|
||||||
|
f.write(u'\n')
|
||||||
|
|
||||||
|
- if system_headers := schema.get(u'system-headers', []):
|
||||||
|
+ system_headers = schema.get(u'system-headers', [])
|
||||||
|
+ if system_headers:
|
||||||
|
for header in system_headers:
|
||||||
|
f.write(u'#include <%s>\n' % header)
|
||||||
|
f.write(u'\n')
|
Loading…
Reference in new issue