comparison src/share/vm/runtime/arguments.cpp @ 2511:62feb6fd69a9

Adjusted classpaths such that new graalvm repo structure works.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 12:14:48 +0200
parents 0654ee04b214
children 4a36a0bd6d18
comparison
equal deleted inserted replaced
2510:206c5144fe1d 2511:62feb6fd69a9
2680 if (PrintVMOptions) tty->print("MAXINE=%s", maxine_dir); 2680 if (PrintVMOptions) tty->print("MAXINE=%s", maxine_dir);
2681 if (!os::getenv("GRAAL", graal_dir, sizeof(graal_dir))) { 2681 if (!os::getenv("GRAAL", graal_dir, sizeof(graal_dir))) {
2682 fatal("Must set GRAAL environment variable to a Graal project directory."); 2682 fatal("Must set GRAAL environment variable to a Graal project directory.");
2683 } 2683 }
2684 if (PrintVMOptions) tty->print_cr(" GRAAL=%s", graal_dir); 2684 if (PrintVMOptions) tty->print_cr(" GRAAL=%s", graal_dir);
2685 sprintf(temp, "%s/C1X/bin", maxine_dir);
2686 scp_p->add_prefix(temp);
2687 sprintf(temp, "%s/CRI/bin", maxine_dir); 2685 sprintf(temp, "%s/CRI/bin", maxine_dir);
2688 scp_p->add_prefix(temp); 2686 scp_p->add_prefix(temp);
2689 sprintf(temp, "%s/Base/bin", maxine_dir); 2687 sprintf(temp, "%s/Base/bin", maxine_dir);
2690 scp_p->add_prefix(temp); 2688 scp_p->add_prefix(temp);
2691 sprintf(temp, "%s/Assembler/bin", maxine_dir); 2689 sprintf(temp, "%s/Assembler/bin", maxine_dir);
2692 scp_p->add_prefix(temp); 2690 scp_p->add_prefix(temp);
2693 sprintf(temp, "%s/graal/Runtime/bin", graal_dir); 2691 sprintf(temp, "%s/graal/GraalCompiler/bin", graal_dir);
2692 scp_p->add_prefix(temp);
2693 sprintf(temp, "%s/graal/GraalRuntime/bin", graal_dir);
2694 scp_p->add_prefix(temp); 2694 scp_p->add_prefix(temp);
2695 *scp_assembly_required_p = true; 2695 *scp_assembly_required_p = true;
2696 } else if (match_option(option, "-C1X:", &tail)) { // -C1X:xxxx 2696 } else if (match_option(option, "-C1X:", &tail)) { // -C1X:xxxx
2697 // Option for the C1X compiler. 2697 // Option for the C1X compiler.
2698 if (PrintVMOptions) { 2698 if (PrintVMOptions) {