Hi Andrew,
Dr Andrew John Hughes said the following on 03/31/11 00:08:
On 30 March 2011 08:09, David Holmes <[email protected]> wrote:
http://cr.openjdk.java.net/~dholmes/7032364/webrev/
More pieces to support SE Embedded.
When are these files installed? Will they interfere with Zero/Shark
installs on ARM & PPC?
Not sure how to answer the "when" part exactly (it's done in
make/java/vm/Makefile), but this won't interfere with Zero as it defines
its own value for the "arch" to use:
JVMCFG = $(LIBDIR)/$(LIBARCH)/jvm.cfg
#
# How to install jvm.cfg.
#
ifeq ($(ZERO_BUILD), true)
JVMCFG_ARCH = zero
else
JVMCFG_ARCH = $(ARCH)
endif
$(JVMCFG): $(PLATFORM_SRC)/bin/$(JVMCFG_ARCH)/jvm.cfg
$(install-file)
David