We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fab830c commit f098cd6Copy full SHA for f098cd6
app/src/processing/app/Library.java
@@ -157,6 +157,14 @@ private Library(File folder, String groupName) {
157
nativeLibraryFolder = hostLibrary;
158
}
159
// System.out.println("3 native lib folder now " + nativeLibraryFolder);
160
+
161
+ if (hostPlatform.equals("linux") && System.getProperty("os.arch").equals("arm")) {
162
+ hostLibrary = new File(libraryFolder, "linux-armv6hf");
163
+ if (hostLibrary.exists()) {
164
+ nativeLibraryFolder = hostLibrary;
165
+ }
166
167
168
// save that folder for later use
169
nativeLibraryPath = nativeLibraryFolder.getAbsolutePath();
170
0 commit comments