Skip to content

Commit e14801c

Browse files
committedJul 5, 2021
8269668: [aarch64] java.library.path not including /usr/lib64
Reviewed-by: aph, dholmes
1 parent 97e0e9e commit e14801c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/os/linux/os_linux.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ void os::init_system_properties_values() {
412412
// ...
413413
// 7: The default directories, normally /lib and /usr/lib.
414414
#ifndef OVERRIDE_LIBPATH
415-
#if defined(AMD64) || (defined(_LP64) && defined(SPARC)) || defined(PPC64) || defined(S390)
415+
#if defined(_LP64)
416416
#define DEFAULT_LIBPATH "/usr/lib64:/lib64:/lib:/usr/lib"
417417
#else
418418
#define DEFAULT_LIBPATH "/lib:/usr/lib"

0 commit comments

Comments
 (0)
Please sign in to comment.