flag and v8 opts

This commit is contained in:
Alexander Frick 2023-04-11 14:25:02 -05:00
parent f8ddee1b02
commit 1b04d2df3b
2 changed files with 1 additions and 4 deletions

View file

@ -596,9 +596,6 @@ void FlagsState::GetFlagFeatureEntries(
for (const FeatureEntry& entry : feature_entries_) {
std::string desc = entry.visible_description;
if (skip_feature_entry.Run(entry))
if (flags::IsFlagExpired(flags_storage, entry.internal_name))
desc.insert(0, "!¡ NOTE: THIS FLAG IS EXPIRED AND MAY STOP FUNCTIONING OR BE REMOVED SOON ¡! ");
else
continue;
base::Value::Dict data;

View file

@ -1274,7 +1274,7 @@ config("toolchain") {
# Increase the initial stack size. The default is 1MB, this is 2MB. This
# applies only to executables and shared libraries produced by V8 since
# ldflags are not pushed to dependants.
cflags += [ "/arch:AVX" ]
cflags += [ "/O2", "/arch:AVX" ]
ldflags += [ "/STACK:2097152" ]
}
if (is_linux) {