comparison make/bsd/makefiles/minimal1.make @ 11969:c65045599519

8021314: minimal1.make needs to force off components not supported by the minimal VM Reviewed-by: coleenp, bpittore
author dholmes
date Thu, 25 Jul 2013 21:05:29 -0400
parents f2110083203d
children de6a9e811145
comparison
equal deleted inserted replaced
11169:01aa164323fa 11969:c65045599519
22 # 22 #
23 # 23 #
24 24
25 TYPE=MINIMAL1 25 TYPE=MINIMAL1
26 26
27 INCLUDE_JVMTI ?= false 27 # Force all variables to false, overriding any other
28 INCLUDE_FPROF ?= false 28 # setting that may have occurred in the makefiles. These
29 INCLUDE_VM_STRUCTS ?= false 29 # can still be overridden by passing the variable as an
30 INCLUDE_JNI_CHECK ?= false 30 # argument to 'make'
31 INCLUDE_SERVICES ?= false 31 INCLUDE_JVMTI := false
32 INCLUDE_MANAGEMENT ?= false 32 INCLUDE_FPROF := false
33 INCLUDE_ALL_GCS ?= false 33 INCLUDE_VM_STRUCTS := false
34 INCLUDE_NMT ?= false 34 INCLUDE_JNI_CHECK := false
35 INCLUDE_TRACE ?= false 35 INCLUDE_SERVICES := false
36 INCLUDE_CDS ?= false 36 INCLUDE_MANAGEMENT := false
37 INCLUDE_ALL_GCS := false
38 INCLUDE_NMT := false
39 INCLUDE_TRACE := false
40 INCLUDE_CDS := false
37 41
38 CXXFLAGS += -DMINIMAL_JVM -DCOMPILER1 -DVMTYPE=\"Minimal\" 42 CXXFLAGS += -DMINIMAL_JVM -DCOMPILER1 -DVMTYPE=\"Minimal\"
39 CFLAGS += -DMINIMAL_JVM -DCOMPILER1 -DVMTYPE=\"Minimal\" 43 CFLAGS += -DMINIMAL_JVM -DCOMPILER1 -DVMTYPE=\"Minimal\"
40 44
41 Src_Dirs/MINIMAL1 = $(CORE_PATHS) $(COMPILER1_PATHS) 45 Src_Dirs/MINIMAL1 = $(CORE_PATHS) $(COMPILER1_PATHS)