3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-09-29 14:40:21 +02:00

Graceful fallback when /tmp is amounted noexec on Linux

Fixes #260
Dieser Commit ist enthalten in:
Andrew Steinborn 2019-11-29 12:03:38 -05:00
Ursprung 667610c251
Commit 2f55912995

Datei anzeigen

@ -38,7 +38,12 @@ public class Natives {
// Well, it doesn't matter... // Well, it doesn't matter...
} }
})); }));
try {
System.load(tempFile.toAbsolutePath().toString()); System.load(tempFile.toAbsolutePath().toString());
} catch (UnsatisfiedLinkError e) {
throw new NativeSetupException("Unable to load native " + tempFile.toAbsolutePath(), e);
}
} catch (IOException e) { } catch (IOException e) {
throw new NativeSetupException("Unable to copy natives", e); throw new NativeSetupException("Unable to copy natives", e);
} }