For OS X users: I found an answer on to the problem of not being able to get cmake to configure wsjtx_exp after installing Xcode 7.0 on OS X 10.10.5. Xcode 7’s internal SDK is for 10.11, not 10.10. I am running 10.10, so this causes some kind of conflict. The problem is described here on the Apple Developer forum (you may need to log in): https://forums.developer.apple.com/message/51754#51754
Adding these to the cmake configuration command did the trick: -D CMAKE_OSX_DEPLOYMENT_TARGET:STRING="" -D CMAKE_OSX_SYSROOT:STRING=/ I appear to be back in business. For the record, to get the bleeding edge version to run I need to comment out line 23 of decoder.f90: ! write(79,*) 'A’,minsync This avoids a write permissions issue that I haven’t bothered to track down. Steve k9an > On Oct 4, 2015, at 2:35 PM, Steven Franke <[email protected]> wrote: > > Hi Bill, > > I’ve managed to break my OS X development environment, probably because I > updated to Xcode v7.0 and then updated Macports. I should know better by now… > > It appears that the linker is not finding a library, libSystem. I checked, > and I find a “libSystem.tbd” in the path: > /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/lib > > But I don’t recognize the suffix, “.tbd”. > > I’ve attached the CMakeError.log. Any hints would be most appreciated. > > Steve k9an > > <CMakeError.log>------------------------------------------------------------------------------ > _______________________________________________ > wsjt-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/wsjt-devel ------------------------------------------------------------------------------ _______________________________________________ wsjt-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wsjt-devel
