mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-09 11:27:32 -03:00
fix args
This commit is contained in:
parent
82ec02d8b0
commit
117946bcbf
5 changed files with 5 additions and 4 deletions
|
@ -46,7 +46,7 @@ v8_enable_fast_torque = true
|
|||
v8_enable_builtins_optimization = true
|
||||
v8_enable_maglev = true
|
||||
v8_enable_turbofan = true
|
||||
v8_enable_wasm_simd256_revec = true
|
||||
# v8_enable_wasm_simd256_revec = true
|
||||
use_v8_context_snapshot = true
|
||||
blink_symbol_level = 0
|
||||
enable_precompiled_headers = false
|
||||
|
|
|
@ -34,6 +34,7 @@ v8_enable_fast_torque = true
|
|||
v8_enable_builtins_optimization = true
|
||||
v8_enable_maglev = true
|
||||
v8_enable_turbofan = true
|
||||
# v8_enable_wasm_simd256_revec = true
|
||||
use_v8_context_snapshot = true
|
||||
blink_symbol_level = 0
|
||||
enable_precompiled_headers = false
|
||||
|
|
|
@ -1371,7 +1371,7 @@ config("toolchain") {
|
|||
defines += [ "V8_TARGET_ARCH_IA32" ]
|
||||
if (is_win) {
|
||||
# Ensure no surprising artifacts from 80bit double math with x86.
|
||||
cflags += [ "/O2", "/arch:SSE2" ]
|
||||
cflags += [ "/O2", "/arch:SSE3" ]
|
||||
}
|
||||
}
|
||||
if (v8_current_cpu == "x64") {
|
||||
|
|
2
setup.sh
2
setup.sh
|
@ -96,7 +96,7 @@ copyRaspi () {
|
|||
cp -r -v arm/raspi/* ${CR_SRC_DIR}/ &&
|
||||
rm -v ${CR_SRC_DIR}/out/thorium/pak &&
|
||||
cp -v pak_src/binaries/pak_arm64 ${CR_SRC_DIR}/out/thorium/pak &&
|
||||
./infra/fix_libaom.sh &&
|
||||
. ./infra/fix_libaom.sh &&
|
||||
printf "\n"
|
||||
}
|
||||
# Display raspi ascii art
|
||||
|
|
2
src/third_party/libaom/cmake_update.sh
vendored
2
src/third_party/libaom/cmake_update.sh
vendored
|
@ -203,6 +203,6 @@ convert_to_windows "${CFG}/win/arm64-cpu-detect/config/aom_config.h"
|
|||
update_readme
|
||||
|
||||
# git cl format > /dev/null \
|
||||
# || echo "ERROR: 'git cl format' failed. Please run 'git cl format' manually."
|
||||
# || echo "WARNING: 'git cl format' failed. Please run 'git cl format' manually."
|
||||
|
||||
cleanup
|
||||
|
|
Loading…
Reference in a new issue