Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tools/v8_gypfiles/abseil.gyp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
'includes': ['toolchain.gypi'],
'targets': [
{
'target_name': 'abseil',
Expand Down
10 changes: 6 additions & 4 deletions tools/v8_gypfiles/toolchain.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,16 @@
'ubsan_vptr%': 0,
'has_valgrind%': 0,
'coverage%': 0,

# Toolchain settings.
'v8_target_arch%': '<(target_arch)',
'v8_host_byteorder%': '<!("<(python)" -c "import sys; print(sys.byteorder)")',
'force_dynamic_crt%': 0,

# Enable control-flow integrity features, such as pointer authentication
# for ARM64.
'v8_control_flow_integrity%': 0,

# Setting 'v8_can_use_vfp32dregs' to 'true' will cause V8 to use the VFP
# registers d16-d31 in the generated code, both in the snapshot and for the
# ARM target. Leaving the default value of 'false' will avoid the use of
Expand Down Expand Up @@ -98,10 +104,6 @@
'gcmole%': 0,
},
'target_defaults': {
'include_dirs': [
'<(V8_ROOT)',
'<(V8_ROOT)/include',
],
'cflags!': ['-Wall', '-Wextra'],
'conditions': [
['clang==0 and OS!="win"', {
Expand Down
4 changes: 4 additions & 0 deletions tools/v8_gypfiles/v8.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
},
'includes': ['toolchain.gypi', 'features.gypi'],
'target_defaults': {
'include_dirs': [
'<(V8_ROOT)',
'<(V8_ROOT)/include',
],
'msvs_settings': {
'VCCLCompilerTool': {
'AdditionalOptions': ['/utf-8']
Expand Down
Loading