0

I'm compiling openCV on Mac (64-bits). When I compile using "make " I get this error

"Linking C static library ../lib/armeabi-v7a/liblibjpeg.a". Don't know what this error is all about.

4

1 回答 1

2

In the makefile, replace

-llibjpeg

with

-ljpeg

In NDK/*nix linker, the "lib" prefix is attached by default.

于 2012-09-24T21:04:09.410 回答