Skip to content

Commit 44034f9

Browse files
committed
removed forcing of arm7
1 parent 3e7c238 commit 44034f9

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/gab/opencv/OpenCV.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -407,8 +407,7 @@ private void initNative(){
407407
isArm = true;
408408
}
409409

410-
// path = isArm ? nativeLibPath + "arm7" : nativeLibPath + "linux" + bitsJVM;
411-
path = nativeLibPath + "arm7";
410+
path = isArm ? nativeLibPath + "arm7" : nativeLibPath + "linux" + bitsJVM;
412411
}
413412

414413
// ensure the determined path exists
@@ -423,7 +422,7 @@ private void initNative(){
423422
e.printStackTrace();
424423
}
425424

426-
// this check might be redundant?
425+
// this check might be redundant now...
427426
if((PApplet.platform == PConstants.MACOSX && bitsJVM == 64) || (PApplet.platform == PConstants.WINDOWS) || (PApplet.platform == PConstants.LINUX)){
428427
try {
429428
System.out.println("Adding native libarary path: " + nativeLibPath);

0 commit comments

Comments
 (0)