-
Bug
-
Resolution: Fixed
-
P1
-
1.4.1
-
rc
-
x86
-
windows_xp
-
Verified
Test: Clean Install of Hopper JRE b14 bundle in Win-XP Pro (64 bit).
Build: Hopper beta - b14 - "j2re-1_4_1-beta-windows-ia64.tar"
Location : /java/re/jdk/1.4.1/promoted/beta/b14/bundles/windows-ia64/
Platform : Win 64
Fixed in Release.gmk to include server jvm file, since there
is no client for 64 bit.
Problem:
JVM files are not installed in the JRE bundle of Hopper b14 for Windows-Xp Prof - 64bit (win64). The folder "%JRE_HOME%\bin\server" is missing. Hence there is no "jvm.dll" file in it. As a result of this, "java" command doesnt work and the installation fails.
In JDK bundle, this problem is not there.
In Linux (64 bit) for IA 64, this problem is not there.
This problem is reproducable in the same platform/OS.
OBSERVATIONS:
Upon moving the 'jvm.dll' file(with the 'server' folder) from the JRE inside JDK ( %JDK_HOME%\jre\bin ) to the problem JRE, everything works fine.
To Reproduce:
1. Extract the tar bundle onto the Hard drive of the Win XP Prof (64 bit) machine.
2. Set the path to include %JRE_HOME%\bin.
3. Run the java command. It will say "%JRE_HOME%\bin\server\jvm.dll" is missing.
UPDATE - 6/14/2002 (Rajani Kaja)
The fix should be done in make/common/Release.gmk as follows, but we don't have
a 64 build machine. So assigning it to Dale Mcduffie.
The lines
$(RM) -r $(JRE_IMAGE_DIR)/bin/server
$(RM) -r $(JRE_IMAGE_DIR)/bin/client/*.map $(JRE_IMAGE_DIR)/bin/client/*
.pdb
should be changed to:
ifneq ($(ARCH_DATA_MODEL), 64)
$(RM) -r $(JRE_IMAGE_DIR)/bin/server
$(RM) -r $(JRE_IMAGE_DIR)/bin/client/*.map $(JRE_IMAGE_DIR)/bin/client/*
.pdb
endif
Build: Hopper beta - b14 - "j2re-1_4_1-beta-windows-ia64.tar"
Location : /java/re/jdk/1.4.1/promoted/beta/b14/bundles/windows-ia64/
Platform : Win 64
Fixed in Release.gmk to include server jvm file, since there
is no client for 64 bit.
Problem:
JVM files are not installed in the JRE bundle of Hopper b14 for Windows-Xp Prof - 64bit (win64). The folder "%JRE_HOME%\bin\server" is missing. Hence there is no "jvm.dll" file in it. As a result of this, "java" command doesnt work and the installation fails.
In JDK bundle, this problem is not there.
In Linux (64 bit) for IA 64, this problem is not there.
This problem is reproducable in the same platform/OS.
OBSERVATIONS:
Upon moving the 'jvm.dll' file(with the 'server' folder) from the JRE inside JDK ( %JDK_HOME%\jre\bin ) to the problem JRE, everything works fine.
To Reproduce:
1. Extract the tar bundle onto the Hard drive of the Win XP Prof (64 bit) machine.
2. Set the path to include %JRE_HOME%\bin.
3. Run the java command. It will say "%JRE_HOME%\bin\server\jvm.dll" is missing.
UPDATE - 6/14/2002 (Rajani Kaja)
The fix should be done in make/common/Release.gmk as follows, but we don't have
a 64 build machine. So assigning it to Dale Mcduffie.
The lines
$(RM) -r $(JRE_IMAGE_DIR)/bin/server
$(RM) -r $(JRE_IMAGE_DIR)/bin/client/*.map $(JRE_IMAGE_DIR)/bin/client/*
.pdb
should be changed to:
ifneq ($(ARCH_DATA_MODEL), 64)
$(RM) -r $(JRE_IMAGE_DIR)/bin/server
$(RM) -r $(JRE_IMAGE_DIR)/bin/client/*.map $(JRE_IMAGE_DIR)/bin/client/*
.pdb
endif