sync ports with The Matrix

This commit is contained in:
purplerain 2023-08-28 01:43:33 +00:00
parent f0303ad1a2
commit 90cde7b655
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
376 changed files with 2401 additions and 1751 deletions

View file

@ -19,7 +19,7 @@ Index: build/config/compiler/BUILD.gn
}
# compiler ---------------------------------------------------------------------
@@ -302,7 +305,9 @@ config("compiler") {
@@ -303,7 +306,9 @@ config("compiler") {
configs += [
# See the definitions below.
@ -29,7 +29,7 @@ Index: build/config/compiler/BUILD.gn
":compiler_codegen",
":compiler_deterministic",
]
@@ -495,6 +500,10 @@ config("compiler") {
@@ -498,6 +503,10 @@ config("compiler") {
}
}
@ -40,7 +40,7 @@ Index: build/config/compiler/BUILD.gn
# Linux-specific compiler flags setup.
# ------------------------------------
if (use_gold) {
@@ -818,7 +827,7 @@ config("compiler") {
@@ -825,7 +834,7 @@ config("compiler") {
# * Apple platforms (e.g. MacOS, iPhone, iPad) aren't supported because xcode
# lldb doesn't have the needed changes yet.
# TODO(crbug.com/1379070): Remove if the upstream default ever changes.
@ -49,7 +49,7 @@ Index: build/config/compiler/BUILD.gn
cflags_cc += [ "-gsimple-template-names" ]
}
@@ -1053,7 +1062,7 @@ config("compiler_cpu_abi") {
@@ -1067,7 +1076,7 @@ config("compiler_cpu_abi") {
]
}
} else if (current_cpu == "arm") {
@ -58,7 +58,7 @@ Index: build/config/compiler/BUILD.gn
!(is_chromeos_lacros && is_chromeos_device)) {
cflags += [ "--target=arm-linux-gnueabihf" ]
ldflags += [ "--target=arm-linux-gnueabihf" ]
@@ -1068,7 +1077,7 @@ config("compiler_cpu_abi") {
@@ -1082,7 +1091,7 @@ config("compiler_cpu_abi") {
cflags += [ "-mtune=$arm_tune" ]
}
} else if (current_cpu == "arm64") {
@ -67,7 +67,7 @@ Index: build/config/compiler/BUILD.gn
!(is_chromeos_lacros && is_chromeos_device)) {
cflags += [ "--target=aarch64-linux-gnu" ]
ldflags += [ "--target=aarch64-linux-gnu" ]
@@ -1414,6 +1423,27 @@ config("compiler_deterministic") {
@@ -1428,6 +1437,27 @@ config("compiler_deterministic") {
}
}
@ -95,7 +95,7 @@ Index: build/config/compiler/BUILD.gn
config("rustc_revision") {
if (rustc_revision != "") {
# Similar to the above config, this is here so that all files get recompiled
@@ -1632,7 +1662,7 @@ config("default_warnings") {
@@ -1656,7 +1686,7 @@ config("default_warnings") {
"-Wno-ignored-pragma-optimize",
]
@ -104,7 +104,7 @@ Index: build/config/compiler/BUILD.gn
cflags += [
# TODO(crbug.com/1343975) Evaluate and possibly enable.
"-Wno-deprecated-builtins",
@@ -1809,7 +1839,7 @@ config("no_chromium_code") {
@@ -1845,7 +1875,7 @@ config("no_chromium_code") {
# third-party libraries.
"-Wno-c++11-narrowing",
]
@ -113,7 +113,7 @@ Index: build/config/compiler/BUILD.gn
cflags += [
# Disabled for similar reasons as -Wunused-variable.
"-Wno-unused-but-set-variable",
@@ -2093,8 +2123,7 @@ config("default_stack_frames") {
@@ -2129,8 +2159,7 @@ config("default_stack_frames") {
}
# Default "optimization on" config.
@ -123,7 +123,7 @@ Index: build/config/compiler/BUILD.gn
if (is_win) {
if (chrome_pgo_phase != 2) {
# Favor size over speed, /O1 must be before the common flags.
@@ -2153,8 +2182,7 @@ config("xoptimize") {
@@ -2189,8 +2218,7 @@ config("xoptimize") {
}
# Turn off optimizations.
@ -133,7 +133,7 @@ Index: build/config/compiler/BUILD.gn
if (is_win) {
cflags = [
"/Od", # Disable optimization.
@@ -2194,8 +2222,7 @@ config("xno_optimize") {
@@ -2230,8 +2258,7 @@ config("xno_optimize") {
# Turns up the optimization level. On Windows, this implies whole program
# optimization and link-time code generation which is very expensive and should
# be used sparingly.
@ -143,7 +143,7 @@ Index: build/config/compiler/BUILD.gn
if (is_nacl && is_nacl_irt) {
# The NaCl IRT is a special case and always wants its own config.
# Various components do:
@@ -2228,8 +2255,7 @@ config("xoptimize_max") {
@@ -2264,8 +2291,7 @@ config("xoptimize_max") {
#
# TODO(crbug.com/621335) - rework how all of these configs are related
# so that we don't need this disclaimer.
@ -153,7 +153,7 @@ Index: build/config/compiler/BUILD.gn
if (is_nacl && is_nacl_irt) {
# The NaCl IRT is a special case and always wants its own config.
# Various components do:
@@ -2255,8 +2281,7 @@ config("xoptimize_speed") {
@@ -2291,8 +2317,7 @@ config("xoptimize_speed") {
}
}
@ -163,7 +163,7 @@ Index: build/config/compiler/BUILD.gn
cflags = [ "-O1" ] + common_optimize_on_cflags
rustflags = [ "-Copt-level=1" ]
ldflags = common_optimize_on_ldflags
@@ -2324,7 +2349,7 @@ config("afdo_optimize_size") {
@@ -2360,7 +2385,7 @@ config("afdo_optimize_size") {
# There are some targeted places that AFDO regresses, so we provide a separate
# config to allow AFDO to be disabled per-target.
config("afdo") {
@ -172,7 +172,7 @@ Index: build/config/compiler/BUILD.gn
cflags = []
if (clang_emit_debug_info_for_profiling) {
# Add the following flags to generate debug info for profiling.
@@ -2343,7 +2368,7 @@ config("afdo") {
@@ -2379,7 +2404,7 @@ config("afdo") {
}
inputs = [ _clang_sample_profile ]
}
@ -181,7 +181,7 @@ Index: build/config/compiler/BUILD.gn
cflags = [ "-fauto-profile=${auto_profile_path}" ]
inputs = [ auto_profile_path ]
}
@@ -2381,8 +2406,7 @@ config("win_pdbaltpath") {
@@ -2417,8 +2442,7 @@ config("win_pdbaltpath") {
}
# Full symbols.
@ -191,7 +191,7 @@ Index: build/config/compiler/BUILD.gn
rustflags = []
if (is_win) {
if (is_clang) {
@@ -2502,7 +2526,8 @@ config("xsymbols") {
@@ -2538,7 +2562,8 @@ config("xsymbols") {
configs += [ "//build/config:compress_debug_sections" ]
}
@ -201,7 +201,7 @@ Index: build/config/compiler/BUILD.gn
if (is_apple) {
# TODO(https://crbug.com/1050118): Investigate missing debug info on mac.
# Make sure we don't use constructor homing on mac.
@@ -2525,8 +2550,7 @@ config("xsymbols") {
@@ -2561,8 +2586,7 @@ config("xsymbols") {
# Minimal symbols.
# This config guarantees to hold symbol for stack trace which are shown to user
# when crash happens in unittests running on buildbot.
@ -211,7 +211,7 @@ Index: build/config/compiler/BUILD.gn
rustflags = []
if (is_win) {
# Functions, files, and line tables only.
@@ -2611,8 +2635,7 @@ config("xminimal_symbols") {
@@ -2647,8 +2671,7 @@ config("xminimal_symbols") {
# This configuration contains function names only. That is, the compiler is
# told to not generate debug information and the linker then just puts function
# names in the final debug information.