comparison make/windows/makefiles/vm.make @ 4572:76841bdd5f3e

(Windows) Add Graal build configurations (with GRAAL defined) and fix build command.
author Andreas Woess <andreas.woess@jku.at>
date Sat, 11 Feb 2012 23:35:44 +0100
parents c843578c269d
children 33df1aeaebbf
comparison
equal deleted inserted replaced
4571:ac6e494d048a 4572:76841bdd5f3e
56 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER2" 56 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER2"
57 !endif 57 !endif
58 58
59 !if "$(Variant)" == "tiered" 59 !if "$(Variant)" == "tiered"
60 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1" /D "COMPILER2" 60 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1" /D "COMPILER2"
61 !endif
62
63 !if "$(Variant)" == "graal"
64 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1" /D "GRAAL"
61 !endif 65 !endif
62 66
63 !if "$(BUILDARCH)" == "i486" 67 !if "$(BUILDARCH)" == "i486"
64 HOTSPOT_LIB_ARCH=i386 68 HOTSPOT_LIB_ARCH=i386
65 !else 69 !else