Fix RiscV support - Rendering issue for armv7l
[platform/framework/web/chromium-efl.git] / v8 / .bazelrc
1 # Copyright 2021 the V8 project authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # Pass CC, CXX and PATH from the environment
6 build --action_env=CC
7 build --action_env=CXX
8 build --action_env=PATH
9
10 # Use Clang compiler
11 build:clang --action_env=BAZEL_COMPILER=clang
12 build:clang --action_env=CC=clang
13 build:clang --action_env=CXX=clang++
14
15 # V8 debug config
16 build:debug --compilation_mode=dbg
17 build:debug --config=v8_enable_debugging_features
18 build:debug --//:v8_enable_fast_mksnapshot
19 build:debug --//:v8_enable_backtrace
20 build:debug --//:v8_enable_handle_zapping
21
22 # v8_enable_debugging_features flags
23 build:v8_enable_debugging_features --//:v8_enable_verify_heap
24 build:v8_enable_debugging_features --//:v8_enable_object_print
25 build:v8_enable_debugging_features --//:v8_enable_disassembler
26 build:v8_enable_debugging_features --//:v8_enable_trace_maps
27 build:v8_enable_debugging_features --//:v8_enable_test_features
28 build:v8_enable_debugging_features --//:v8_enable_v8_checks
29 build:v8_enable_debugging_features --//:v8_code_comments
30 build:v8_enable_debugging_features --//:v8_enable_debug_code
31 build:v8_enable_debugging_features --//:v8_enable_snapshot_native_code_counters