We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e7c238 commit 44034f9Copy full SHA for 44034f9
1 file changed
src/gab/opencv/OpenCV.java
@@ -407,8 +407,7 @@ private void initNative(){
407
isArm = true;
408
}
409
410
-// path = isArm ? nativeLibPath + "arm7" : nativeLibPath + "linux" + bitsJVM;
411
- path = nativeLibPath + "arm7";
+ path = isArm ? nativeLibPath + "arm7" : nativeLibPath + "linux" + bitsJVM;
412
413
414
// ensure the determined path exists
@@ -423,7 +422,7 @@ private void initNative(){
423
422
e.printStackTrace();
424
425
426
- // this check might be redundant?
+ // this check might be redundant now...
427
if((PApplet.platform == PConstants.MACOSX && bitsJVM == 64) || (PApplet.platform == PConstants.WINDOWS) || (PApplet.platform == PConstants.LINUX)){
428
try {
429
System.out.println("Adding native libarary path: " + nativeLibPath);
0 commit comments