add rebasing doc and minor V8 fix

This commit is contained in:
Alexander Frick 2023-12-30 13:44:31 -06:00
parent f0568809e3
commit a6d857a7dd
2 changed files with 5 additions and 1 deletions

4
docs/REBASING.md Normal file
View file

@ -0,0 +1,4 @@
# Rebasing Thorium
My primary job as the founder and main dev of Thorium is rebasing Thorium to match newer upstream Chromium versions.
This is note a trivial task

View file

@ -1380,7 +1380,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 += [ "/O2", "/arch:SSE3" ]
cflags += [ "/O2", "-msse3" ]
ldflags += [ "/STACK:2097152" ]
}
if (is_linux || is_chromeos) {