GP-2541: Redesigned the importer's load library option set. The user now has finer grained control over where libraries are loaded from, as well as how many libraries are loaded.

This commit is contained in:
Ryan Kurtz 2022-09-16 01:01:23 -04:00
parent 975db1919c
commit f62320a50b
26 changed files with 2593 additions and 809 deletions

View file

@ -202,6 +202,9 @@ public enum Platform {
if (operatingSystem == OperatingSystem.LINUX) {
paths.add("/bin");
paths.add("/lib");
paths.add("/lib64");
paths.add("/lib/x86_64-linux-gnu");
paths.add("/lib/aarch64-linux-gnu");
paths.add("/usr/bin");
paths.add("/usr/lib");
paths.add("/usr/X11R6/bin");