We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c134b32 commit 20c5a26Copy full SHA for 20c5a26
Makefile
@@ -33,6 +33,10 @@ ifeq ($(MMTK_MOVING), 0)
33
CARGO_FEATURES := $(CARGO_FEATURES),non_moving
34
endif
35
36
+ifeq ($(MMTK_MOVING_STRESS), 1)
37
+CARGO_FEATURES := $(CARGO_FEATURES),immix_stress_copying
38
+endif
39
+
40
# Build the mmtk-julia project
41
# Note that we might need to clone julia if it doesn't exist
42
# since we need to run bindgen as part of building mmtk-julia
mmtk/Cargo.toml
@@ -54,3 +54,6 @@ marksweep = []
54
55
# This feature disables moving
56
non_moving = ["mmtk/immix_non_moving", "mmtk/immix_smaller_block"]
57
58
+# This feature enables stress copying for Immix for debug use.
59
+immix_stress_copying = ["mmtk/immix_stress_copying"]
0 commit comments