You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been working with the KinectCoreVision binaries in Mac OSX Mavericks. I now need to modify part of the source code, so I cloned the repository from github, open the project in Xcode and tried to built it in Mavericks, as well. Got to solve most of the errors and warning until I run into the following error:
Undefined symbols for architecture i386:
"FreeImage_GetHeight", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_GetBPP", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_FlipVertical", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_GetPitch", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_GetBits", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_GetImageType", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_IsTransparent", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_ConvertTo32Bits", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_CloseMemory", referenced from:
ofLoadImage(ofPixels&, ofBuffer const&) in openFrameworksDebug.a(ofImage.o)
"_freenect_stop_audio", referenced from:
_freenect_process_events_timeout in core.o
"FreeImage_GetFIFFromFilename", referenced from:
ofLoadImage(ofPixels&, std::string) in openFrameworksDebug.a(ofImage.o)
"FreeImage_GetFileTypeFromMemory", referenced from:
ofLoadImage(ofPixels&, ofBuffer const&) in openFrameworksDebug.a(ofImage.o)
"FreeImage_GetColorType", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"_FT_Done_Face", referenced from:
ofTrueTypeFont::loadFont(std::string, int, bool, bool, bool, float, int) in openFrameworksDebug.a(ofTrueTypeFont.o)
"FreeImage_FIFSupportsReading", referenced from:
ofLoadImage(ofPixels&, std::string) in openFrameworksDebug.a(ofImage.o)
"FreeImage_Load", referenced from:
ofLoadImage(ofPixels&, std::string) in openFrameworksDebug.a(ofImage.o)
"_FT_Set_Char_Size", referenced from:
ofTrueTypeFont::loadFont(std::string, int, bool, bool, bool, float, int) in openFrameworksDebug.a(ofTrueTypeFont.o)
"_FreeImage_Initialise", referenced from:
ofInitFreeImage(bool) in openFrameworksDebug.a(ofImage.o)
"_FreeImage_DeInitialise", referenced from:
ofInitFreeImage(bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_OpenMemory", referenced from:
ofLoadImage(ofPixels&, ofBuffer const&) in openFrameworksDebug.a(ofImage.o)
"_FT_New_Face", referenced from:
ofTrueTypeFont::loadFont(std::string, int, bool, bool, bool, float, int) in openFrameworksDebug.a(ofTrueTypeFont.o)
"_FT_Load_Glyph", referenced from:
ofTrueTypeFont::loadFont(std::string, int, bool, bool, bool, float, int) in openFrameworksDebug.a(ofTrueTypeFont.o)
"_FT_Render_Glyph", referenced from:
ofTrueTypeFont::loadFont(std::string, int, bool, bool, bool, float, int) in openFrameworksDebug.a(ofTrueTypeFont.o)
"FreeImage_GetWidth", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"_FT_Done_FreeType", referenced from:
ofTrueTypeFont::finishLibraries() in openFrameworksDebug.a(ofTrueTypeFont.o)
"_FT_Init_FreeType", referenced from:
ofTrueTypeFont::initLibraries() in openFrameworksDebug.a(ofTrueTypeFont.o)
"_write_register", referenced from:
_freenect_start_depth in cameras.o
_freenect_start_video in cameras.o
_freenect_stop_depth in cameras.o
_freenect_stop_video in cameras.o
"FreeImage_LoadFromMemory", referenced from:
ofLoadImage(ofPixels&, ofBuffer const&) in openFrameworksDebug.a(ofImage.o)
"_upload_firmware_from_memory", referenced from: fnusb_open_subdevices in usb_libusb10.o
"upload_firmware", referenced from: fnusb_open_subdevices in usb_libusb10.o
"FreeImage_GetFileType", referenced from:
ofLoadImage(ofPixels&, std::string) in openFrameworksDebug.a(ofImage.o)
"FT_Get_Char_Index", referenced from:
ofTrueTypeFont::loadFont(std::string, int, bool, bool, bool, float, int) in openFrameworksDebug.a(ofTrueTypeFont.o)
"FreeImage_Unload", referenced from:
ofLoadImage(ofPixels&, std::string) in openFrameworksDebug.a(ofImage.o)
ofLoadImage(ofPixels&, ofBuffer const&) in openFrameworksDebug.a(ofImage.o)
void putBmpIntoPixels(FIBITMAP, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_ConvertTo24Bits", referenced from:
void putBmpIntoPixels(FIBITMAP, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"_send_cmd", referenced from:
_freenect_fetch_reg_info in cameras.o
_freenect_fetch_reg_pad_info in cameras.o
_freenect_fetch_zero_plane_info in cameras.o
_freenect_fetch_reg_const_shift in cameras.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
any help would be greatly appreciated.
thank you in advance!
The text was updated successfully, but these errors were encountered:
Hi Patricio,
I have been working with the KinectCoreVision binaries in Mac OSX Mavericks. I now need to modify part of the source code, so I cloned the repository from github, open the project in Xcode and tried to built it in Mavericks, as well. Got to solve most of the errors and warning until I run into the following error:
Undefined symbols for architecture i386:
"FreeImage_GetHeight", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_GetBPP", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_FlipVertical", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_GetPitch", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_GetBits", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_GetImageType", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_IsTransparent", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_ConvertTo32Bits", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_CloseMemory", referenced from:
ofLoadImage(ofPixels&, ofBuffer const&) in openFrameworksDebug.a(ofImage.o)
"_freenect_stop_audio", referenced from:
_freenect_process_events_timeout in core.o
"FreeImage_GetFIFFromFilename", referenced from:
ofLoadImage(ofPixels&, std::string) in openFrameworksDebug.a(ofImage.o)
"FreeImage_GetFileTypeFromMemory", referenced from:
ofLoadImage(ofPixels&, ofBuffer const&) in openFrameworksDebug.a(ofImage.o)
"FreeImage_GetColorType", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"_FT_Done_Face", referenced from:
ofTrueTypeFont::loadFont(std::string, int, bool, bool, bool, float, int) in openFrameworksDebug.a(ofTrueTypeFont.o)
"FreeImage_FIFSupportsReading", referenced from:
ofLoadImage(ofPixels&, std::string) in openFrameworksDebug.a(ofImage.o)
"FreeImage_Load", referenced from:
ofLoadImage(ofPixels&, std::string) in openFrameworksDebug.a(ofImage.o)
"_FT_Set_Char_Size", referenced from:
ofTrueTypeFont::loadFont(std::string, int, bool, bool, bool, float, int) in openFrameworksDebug.a(ofTrueTypeFont.o)
"_FreeImage_Initialise", referenced from:
ofInitFreeImage(bool) in openFrameworksDebug.a(ofImage.o)
"_FreeImage_DeInitialise", referenced from:
ofInitFreeImage(bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_OpenMemory", referenced from:
ofLoadImage(ofPixels&, ofBuffer const&) in openFrameworksDebug.a(ofImage.o)
"_FT_New_Face", referenced from:
ofTrueTypeFont::loadFont(std::string, int, bool, bool, bool, float, int) in openFrameworksDebug.a(ofTrueTypeFont.o)
"_FT_Load_Glyph", referenced from:
ofTrueTypeFont::loadFont(std::string, int, bool, bool, bool, float, int) in openFrameworksDebug.a(ofTrueTypeFont.o)
"_FT_Render_Glyph", referenced from:
ofTrueTypeFont::loadFont(std::string, int, bool, bool, bool, float, int) in openFrameworksDebug.a(ofTrueTypeFont.o)
"FreeImage_GetWidth", referenced from:
void putBmpIntoPixels(FIBITMAP*, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"_FT_Done_FreeType", referenced from:
ofTrueTypeFont::finishLibraries() in openFrameworksDebug.a(ofTrueTypeFont.o)
"_FT_Init_FreeType", referenced from:
ofTrueTypeFont::initLibraries() in openFrameworksDebug.a(ofTrueTypeFont.o)
"_write_register", referenced from:
_freenect_start_depth in cameras.o
_freenect_start_video in cameras.o
_freenect_stop_depth in cameras.o
_freenect_stop_video in cameras.o
"FreeImage_LoadFromMemory", referenced from:
ofLoadImage(ofPixels&, ofBuffer const&) in openFrameworksDebug.a(ofImage.o)
"_upload_firmware_from_memory", referenced from:
fnusb_open_subdevices in usb_libusb10.o
"upload_firmware", referenced from:
fnusb_open_subdevices in usb_libusb10.o
"FreeImage_GetFileType", referenced from:
ofLoadImage(ofPixels&, std::string) in openFrameworksDebug.a(ofImage.o)
"FT_Get_Char_Index", referenced from:
ofTrueTypeFont::loadFont(std::string, int, bool, bool, bool, float, int) in openFrameworksDebug.a(ofTrueTypeFont.o)
"FreeImage_Unload", referenced from:
ofLoadImage(ofPixels&, std::string) in openFrameworksDebug.a(ofImage.o)
ofLoadImage(ofPixels&, ofBuffer const&) in openFrameworksDebug.a(ofImage.o)
void putBmpIntoPixels(FIBITMAP, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"FreeImage_ConvertTo24Bits", referenced from:
void putBmpIntoPixels(FIBITMAP, ofPixels&, bool) in openFrameworksDebug.a(ofImage.o)
"_send_cmd", referenced from:
_freenect_fetch_reg_info in cameras.o
_freenect_fetch_reg_pad_info in cameras.o
_freenect_fetch_zero_plane_info in cameras.o
_freenect_fetch_reg_const_shift in cameras.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
any help would be greatly appreciated.
thank you in advance!
The text was updated successfully, but these errors were encountered: