--- old/src/hotspot/os/posix/os_posix.cpp 2018-06-17 16:00:50.126899204 +0200 +++ new/src/hotspot/os/posix/os_posix.cpp 2018-06-17 16:00:50.026899443 +0200 @@ -1334,6 +1334,13 @@ } +int os::stat(const char *path, struct stat *sbuf) { + return ::stat(path, sbuf); +} + +char * os::native_path(char *path) { + return path; +} // Check minimum allowable stack sizes for thread creation and to initialize // the java system classes, including StackOverflowError - depends on page