-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Linking error for Examples on Mac OS X #4
Comments
I solved it using: |
Hi, |
It's my pleasure to confirm working OSX on Mountain Lion and Mavericks 👍 |
@uricamic can you update INSTALL noting OSX compatibility? |
Hello, I am newbie on Cmake, so how to compile and build the libraries in Mac OS X? I've already installed the CMAKE and download a fresh version of flandmark. Inside that directory downloades I can see a lot of files, but I am not sure what are the source for Cmake process. |
@vhakti Hello, for CMake process, you need just the CMakeLists.txt file. For initiating cmake process, use either some cmake-gui or command line, specifying the source and binary directories. For example, from the command line when in ${PROJECT_BINARY_DIR} execute: ccmake ${PROJECT_SOURCE_DIR} . This will open CMake command line GUI, where you can check paths to libraries, and change some settings and allow you to generate project to be compiled. |
Hi,
First of all thanks for this great library.
The compilation of the static and dynamic libraries go well but when I try to compile the examples I receive this error:
kristofleroux@Edwi ~/Projects/flandmark/examples (master) > make
Linking CXX executable Project_1
Undefined symbols for architecture x86_64:
"cvResize", referenced from:
flandmark_get_normalized_image_frame(IplImage, int const, double_, unsigned char_, model_struct_) in libflandmark_static.a(flandmark_detector.o)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *_* [Project_1] Error 1
make[1]: *** [CMakeFiles/Project_1.dir/all] Error 2
make: *** [all] Error 2
Any idea what is causing the problem ?
Thanks in advance!
The text was updated successfully, but these errors were encountered: