File tree Expand file tree Collapse file tree 2 files changed +22
-5
lines changed Expand file tree Collapse file tree 2 files changed +22
-5
lines changed Original file line number Diff line number Diff line change 19
19
ARGS=' is_asan = true
20
20
is_component_build = false
21
21
use_clang_modules = false
22
- is_debug = true
23
22
symbol_level = 2
24
23
forbid_non_component_debug_builds = false
25
24
use_debug_fission = false
@@ -32,12 +31,12 @@ ARGS='is_asan = true
32
31
treat_warnings_as_errors = false
33
32
libcxx_is_shared = false
34
33
v8_enable_backtrace = true
35
- v8_enable_slow_dchecks = false
36
- v8_optimized_debug = false
37
- v8_enable_fast_mksnapshot = true'
34
+ v8_enable_fast_mksnapshot = false'
38
35
39
36
if [[ -n " ${INDEXER_BUILD:- } " ]]; then
40
- ARGS=" $ARGS clang_base_path=\" /opt/toolchain\" "
37
+ ARGS=" $ARGS is_debug=true v8_optimized_debug=false v8_enable_slow_dchecks=true clang_base_path=\" /opt/toolchain\" "
38
+ else
39
+ ARGS=" $ARGS is_debug=false v8_enable_slow_dchecks=false"
41
40
fi
42
41
43
42
# Generate ninja file for build
Original file line number Diff line number Diff line change
1
+ #! /bin/bash -eu
2
+ # Copyright 2025 Google LLC
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+ # ###############################################################################
17
+
18
+ ./tools/dev/gm.py x64.release.check
You can’t perform that action at this time.
0 commit comments