Skip to content

Commit

Permalink
Params update
Browse files Browse the repository at this point in the history
  • Loading branch information
prikolium-cfx committed May 17, 2024
1 parent ffa8381 commit eb36682
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 12 deletions.
15 changes: 10 additions & 5 deletions build/args.gn
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
is_debug = false
target_cpu = "x64"

v8_static_library = true
is_component_build = false

v8_use_external_startup_data = false
v8_enable_sandbox = true
v8_monolithic = true
v8_enable_i18n_support = true
v8_enable_webassembly = true
v8_monolithic = true
is_clang = false
is_component_build = false
#is_official_build = true
is_clang = true
icu_use_data_file = false
icu_use_stub_data = true
v8_enable_pointer_compression = true
v8_enable_pointer_compression_shared_cage = true
v8_enable_31bit_smis_on_64bit_arch = true
cppgc_enable_caged_heap = true
cppgc_enable_caged_heap = true
use_custom_libcxx = false
treat_warnings_as_errors = false
use_lld = false
15 changes: 10 additions & 5 deletions build/args_debug.gn
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
is_debug = true
target_cpu = "x64"

v8_static_library = true
is_component_build = false

v8_use_external_startup_data = false
v8_enable_sandbox = true
v8_monolithic = true
v8_enable_i18n_support = true
v8_enable_webassembly = true
v8_monolithic = true
is_clang = false
is_component_build = false
#is_official_build = true
is_clang = true
icu_use_data_file = false
icu_use_stub_data = true
v8_enable_pointer_compression = true
v8_enable_pointer_compression_shared_cage = true
v8_enable_31bit_smis_on_64bit_arch = true
cppgc_enable_caged_heap = true
cppgc_enable_caged_heap = true
use_custom_libcxx = false
treat_warnings_as_errors = false
use_lld = false
7 changes: 5 additions & 2 deletions build/prepare-depot.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
$ErrorActionPreference = 'SilentlyContinue'

Set-Location -Path "..\depot_tools"
$CURRENT_DIR = Split-Path -Parent $MyInvocation.MyCommand.Path
Set-Location -Path "${CURRENT_DIR}\..\depot_tools"

Remove-Item -Path ".cipd_bin", ".cipd_client_cache", ".versions", "external_bin" -Recurse -Force
Remove-Item -Path ".cipd_client.exe", "gclient_utils.pyc", "git-bash", "git.bat", "gitk.bat", "metrics.cfg", "python_bin_reldir.txt", "python.bat", "python3_bit_reldir.txt", "python3.bat", "ssh-keygen.bat", "sh.bat", "subrpocess2.pyc" -Force
Expand All @@ -9,4 +10,6 @@ Set-Location -Path "bootstrap"

& ".\win_tools.bat"

Set-Location -Path "..\..\build"
$env:PATH = "${CURRENT_DIR}\..\depot_tools;" + $env:PATH

Set-Location -Path "${CURRENT_DIR}\.."

0 comments on commit eb36682

Please sign in to comment.