-
Notifications
You must be signed in to change notification settings - Fork 65
Description
@aashish24 I think you said you were looking into this. I found a particularly nasty problem you should be aware of. I found that my builds have been generating thousands of crash reports like this.
First, it looks like the @cdat_osx_ld_flags@ shouldn't be here, but I don't think that is breaking anything.
However, xcode-select is crashing because our environment variables are loading an incompatible libjpeg. If you use system libjpg, then it crashes like this:
dyld: Symbol not found: __cg_png_create_info_struct
Referenced from: /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
Expected in: /Users/jbeezley/build/uvcdat/b7aada3_mpi/install/Externals/lib/libPng.dylib
in /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
Trace/BPT trap: 5
I will note that this is showing up as various configure problems. For example. #1004 is likely caused by this (in my CURL/config.log):
configure:26438: ./conftest
dyld: Symbol not found: __cg_png_create_info_struct
Referenced from: /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
Expected in: /Users/jbeezley/build/uvcdat/b7aada3_mpi/install/Externals/lib/libPng.dylib
in /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
configure: line 2183: 73488 Trace/BPT trap: 5 ./conftest$ac_exeext
configure:26438: $? = 133
configure: program exited with status 133
As far as I can remember, this seems to be a recent problem. I was building fine on 10.10 a couple of weeks ago. Perhaps the system libraries were changed in the latest update. I'm attempting to rebuild with jpg and png disabled. I'll see how far down the rabbit hole this takes me.