comparison src/share/vm/runtime/os.cpp @ 1642:0e7d2a08b605

6967423: Hotspot support for modules image Summary: Add hotspot support for modules image Reviewed-by: acorn
author mchung
date Wed, 07 Jul 2010 15:35:58 -0700
parents c18cbe5936b8
children 126ea7725993
comparison
equal deleted inserted replaced
1641:5087ecc10458 1642:0e7d2a08b605
884 "%/lib/rt.jar:" 884 "%/lib/rt.jar:"
885 "%/lib/sunrsasign.jar:" 885 "%/lib/sunrsasign.jar:"
886 "%/lib/jsse.jar:" 886 "%/lib/jsse.jar:"
887 "%/lib/jce.jar:" 887 "%/lib/jce.jar:"
888 "%/lib/charsets.jar:" 888 "%/lib/charsets.jar:"
889
890 // ## TEMPORARY hack to keep the legacy launcher working when
891 // ## only the boot module is installed (cf. j.l.ClassLoader)
892 "%/lib/modules/jdk.boot.jar:"
893
889 "%/classes"; 894 "%/classes";
890 char* sysclasspath = format_boot_path(classpath_format, home, home_len, fileSep, pathSep); 895 char* sysclasspath = format_boot_path(classpath_format, home, home_len, fileSep, pathSep);
891 if (sysclasspath == NULL) return false; 896 if (sysclasspath == NULL) return false;
892 Arguments::set_sysclasspath(sysclasspath); 897 Arguments::set_sysclasspath(sysclasspath);
893 898