Skip to content

Commit fb38003

Browse files
authored
add a flag for disableMarchNative (#3286)
1 parent 443da8e commit fb38003

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ADD . /root/nimbus-eth1
2121

2222
RUN cd /root/nimbus-eth1 \
2323
&& make -j$(nproc) update-from-ci \
24-
&& make -j$(nproc) V=1 nimbus
24+
&& make -j$(nproc) DISABLE_MARCH_NATIVE=1 V=1 nimbus_execution_client
2525

2626
# --------------------------------- #
2727
# Starting new image to reduce size #

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,11 @@ NIM_PARAMS += -d:release
168168
ifneq ($(if $(ENABLE_LINE_NUMBERS),$(ENABLE_LINE_NUMBERS),0),0)
169169
NIM_PARAMS += -d:chronicles_line_numbers:1
170170
endif
171+
172+
ifeq ($(DISABLE_MARCH_NATIVE),1)
173+
NIM_PARAMS += -d:disableMarchNative
174+
endif
175+
171176
ifeq ($(BOEHM_GC),1)
172177
NIM_PARAMS += --mm:boehm
173178
endif

0 commit comments

Comments
 (0)