> > In Code/GraphMol/CMakeLists.txt, there is a conditional > > if(RDK_BUILD_SLN_SUPPORT AND NOT CMAKE_COMPILER_IS_CLANG) > add_subdirectory(SLNParse) > endif() > > In my case, it appears that CMAKE_COMPILER_IS_CLANG is false. Indeed, I see > in build/CMakeCache.txt > CMAKE_C_COMPILER:FILEPATH=/sw/bin/cc > > ..and I smell the culprit: ccache-default. Yes: I have it installed. If I > remove it, I get the same behavior as you, no libSLNParse. > > -- > Martin >
Martin, thanks for figuring this out. Using clang was thus masking a problem with the 10.8.4 package. I've now committed a revision that explicitly invokes /usr/bin/gcc and /usr/bin/g++, and the SLNParse library now gets built. I've put this modification in both for the 10.4 and 10.7 trees (for 10.6.8 and 10.8.4, respectively). Hopefully it will fix the issue Richard Miles reports as well (please let me know). Bill ------------------------------------------------------------------------------ Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! Discover the easy way to master current and previous Microsoft technologies and advance your career. Get an incredible 1,500+ hours of step-by-step tutorial videos with LearnDevNow. Subscribe today and save! http://pubads.g.doubleclick.net/gampad/clk?id=58041391&iu=/4140/ostg.clktrk _______________________________________________ Fink-users mailing list [email protected] List archive: http://news.gmane.org/gmane.os.macosx.fink.user Subscription management: https://lists.sourceforge.net/lists/listinfo/fink-users
