mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
6778662: fixes 64-bits libraries directory search paths on linux
Fixes 64-bits libraries directory search paths. Reviewed-by: never
This commit is contained in:
parent
347b8afe5b
commit
1ad664c0c9
1 changed files with 4 additions and 0 deletions
|
@ -279,7 +279,11 @@ void os::init_system_properties_values() {
|
|||
* ...
|
||||
* 7: The default directories, normally /lib and /usr/lib.
|
||||
*/
|
||||
#if defined(AMD64) || defined(_LP64) && (defined(SPARC) || defined(PPC) || defined(S390))
|
||||
#define DEFAULT_LIBPATH "/usr/lib64:/lib64:/lib:/usr/lib"
|
||||
#else
|
||||
#define DEFAULT_LIBPATH "/lib:/usr/lib"
|
||||
#endif
|
||||
|
||||
#define EXTENSIONS_DIR "/lib/ext"
|
||||
#define ENDORSED_DIR "/lib/endorsed"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue