On Aug 1, 2014, at 10:29 PM, Chris Share <[email protected]> wrote:
> > > I'm a bit suspicious of the following: > > ./configure: line 3619: > /Applications/Xcode.app/Contents/Developer/usr/bin/llvm-gcc-4.2: No such file > or directory > > Is this the cause of the problem? > > If so, how do I fix it? Just suspicious, huh? Yes, that's very likely the reason that the C compiler can't compile a program. It's hard to compile when it's not there. llvm-gcc-4.2 was the gcc emulation compiler in Xcode 4.x; in Xcode 5.x it's merged into clang and gcc is symlinked to clang. .jhbuildrc has worked with that since last December, so unless you've managed to get an old version of Gtk-OSX it's coming from some override you provided. Here's another nugget: You should already have libffi installed because it's a dependency of GLib. So you've managed to confuse your build environment somehow. You can either figure out what's confused or you can remove the build and start over. If you choose the latter, I suggest that you also delete ~/.local, ~/Source, and ~/.jhbuildrc and if you've customized ~/.jhbuildrc-custom move it aside, re-fetch gtk-osx-build-setup.sh and run that to get a truly clean build environment. Don't forget to preserve your application moduleset, and you probably want to preserve your tarballdir so you don't have to re-download everything. Regards, John Ralls ------------------------------------------------------------------------------ Want fast and easy access to all the code in your enterprise? Index and search up to 200,000 lines of code with a free copy of Black Duck Code Sight - the same software that powers the world's largest code search on Ohloh, the Black Duck Open Hub! Try it now. http://p.sf.net/sfu/bds _______________________________________________ Gtk-osx-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/gtk-osx-users _______________________________________________ Gtk-osx-users-list mailing list [email protected] https://mail.gnome.org/mailman/listinfo/gtk-osx-users-list
