Skip to content

Commit fdb765f

Browse files
committed
deps: disable separate_gc_phases
1 parent 125491c commit fdb765f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

deps/v8/src/flags/flag-definitions.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2066,7 +2066,9 @@ DEFINE_SIZE_T(
20662066
"All three flags cannot be specified at the same time.")
20672067
DEFINE_SIZE_T(initial_heap_size, 0, "initial size of the heap (in Mbytes)")
20682068
DEFINE_SIZE_T(initial_old_space_size, 0, "initial old space size (in Mbytes)")
2069-
DEFINE_BOOL(separate_gc_phases, true,
2069+
// FIXME: separate_gc_phases crashes armv7l
2070+
// https://github.com/nodejs/node/pull/57753#issuecomment-2814913083
2071+
DEFINE_BOOL(separate_gc_phases, false,
20702072
"young and full garbage collection phases are not overlapping")
20712073
DEFINE_BOOL(gc_global, false, "always perform global GCs")
20722074

0 commit comments

Comments
 (0)