Searched defs:ld_library_path (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp525 char *ld_library_path; local
528 * Construct the invariant part of ld_library_path. Note that the
534 ld_library_path = (char *) malloc(system_ext_size);
535 sprintf(ld_library_path, "%s" SYS_EXTENSIONS_DIR ":" SYS_EXTENSIONS_DIRS, user_home_dir);
537 ld_library_path = (char *) malloc(sizeof(REG_DIR) + sizeof("/lib/") +
539 sprintf(ld_library_path, REG_DIR "/lib/%s:" DEFAULT_LIBPATH, cpu_arch);
551 char *t = ld_library_path;
553 ld_library_path = (char *) malloc(strlen(l) + 1 + strlen(t) + 1);
554 sprintf(ld_library_path, "%s:%s", l, t);
563 char *t = ld_library_path;
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp450 char *ld_library_path; local
453 * Construct the invariant part of ld_library_path. Note that the
458 ld_library_path = (char *) malloc(sizeof(REG_DIR) + sizeof("/lib/") +
460 sprintf(ld_library_path, REG_DIR "/lib/%s:" DEFAULT_LIBPATH, cpu_arch);
469 char *t = ld_library_path;
471 ld_library_path = (char *) malloc(strlen(v) + 1 + strlen(t) + 1);
472 sprintf(ld_library_path, "%s:%s", v, t);
474 Arguments::set_library_path(ld_library_path);

Completed in 57 milliseconds