comparison make/defs.make @ 21913:a04b45953250

Append -nojvmci to the compiler directory when building without jvmci
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Wed, 10 Jun 2015 19:25:28 +0200
parents 44bad469bec2
children 3df76a0300f3
comparison
equal deleted inserted replaced
21912:1a6a520af3b5 21913:a04b45953250
109 JVM_VARIANTS:=client 109 JVM_VARIANTS:=client
110 JVM_VARIANT_CLIENT:=true 110 JVM_VARIANT_CLIENT:=true
111 endif 111 endif
112 # Further defaults are platform and arch specific 112 # Further defaults are platform and arch specific
113 endif 113 endif
114 endif
115
116 # If we build a no-jvmci-version, we suffix the compiler dir with -nojvmci
117 ifeq ($(COMPILER_DIR_SUFFIX)$(INCLUDE_JVMCI),)
118 COMPILER_DIR_SUFFIX=-nojvmci
114 endif 119 endif
115 120
116 # hotspot version definitions 121 # hotspot version definitions
117 include $(GAMMADIR)/make/hotspot_version 122 include $(GAMMADIR)/make/hotspot_version
118 123