Naveen Neelakantam wrote:
> Is there a way to check what the current setting for the bootclasspath is?
Yes, provided you run the debug build (built with BUILD_CFG=debug):
Just run it with the flag
-Xtrace:init.properties
To make this possible on the release build, you'd need to apply the following
patch
and to use different command-line argument:
-verbose:init.properties
--- a/vm/vmcore/src/init/properties.cpp
+++ b/vm/vmcore/src/init/properties.cpp
@@ -313,7 +313,7 @@ static void define_undefined_predefined_
path_buf = load_full_api_files_path_names_list(boot_path);
add_pair_to_properties(properties, "vm.boot.class.path", path_buf);
- TRACE( "vm.boot.class.path = " << path_buf);
+ INFO( "vm.boot.class.path = " << path_buf);
// Added for compatibility with a reference JDWP agent
add_pair_to_properties(properties, "sun.boot.class.path", path_buf);
---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]