# HG changeset patch # User chrisphi # Date 1394815981 0 # Node ID adf1821ed249cc5d5d9488508b7828634f8387a3 # Parent 99ed2a7d2f8754b69110c495b8ce502d8a66ce87 Allow ARM32 JIT to be disabled diff -r 99ed2a7d2f87 -r adf1821ed249 make/linux/makefiles/zeroshark.make --- a/make/linux/makefiles/zeroshark.make Mon Mar 10 22:26:05 2014 +0000 +++ b/make/linux/makefiles/zeroshark.make Fri Mar 14 16:53:01 2014 +0000 @@ -26,7 +26,8 @@ # Setup common to Zero (non-Shark) and Shark versions of VM ifeq ($(ZERO_LIBARCH),arm) - +# check to see if we are building the assembler jit or just zero. +ifeq ($(ARM32JIT),true) Obj_Files += asm_helper.o Obj_Files += cppInterpreter_arm.o Obj_Files += thumb2.o @@ -54,6 +55,7 @@ $(CC_COMPILE) $(CFLAGS) -DSTATIC_OFFSETS -o $@ $< $(COMPILE_DONE) endif +endif %.o: %.S @echo Assembling $<