[LLVMdev] Patch to VMKIT tools makefile

Dean Calver deano at zombiehousestudios.com
Thu Nov 20 03:25:14 PST 2008


Hello,

Here's a tiny patch to the VMKIT tools makefile, that allows you to  
build VMKIT without both Java and CLI. I'm working on a new bytecode  
front end so wanted a 'clean' mvm without building to two existing  
front ends. Currently it still tries to build VMJC even when its told  
not to build the JNJVM. This patch fixes that.


Index: tools/Makefile
===================================================================
--- tools/Makefile	(revision 59726)
+++ tools/Makefile	(working copy)
@@ -8,11 +8,12 @@
   
##= 
= 
=---------------------------------------------------------------------- 
===##
  LEVEL = ..

-PARALLEL_DIRS = vmkit vmjc
+PARALLEL_DIRS = vmkit

  include $(LEVEL)/Makefile.config

  ifeq ($(WITH_JNJVM), 1)
+  PARALLEL_DIRS += vmjc
    PARALLEL_DIRS += jnjvm
  endif

Bye,
Deano



More information about the llvm-dev mailing list