Advertisement

can't get SOIL2 to work with XCODE

Started by January 01, 2018 07:35 PM
7 comments, last by Andlat 7 years ago

Getting OpenGL to work with XCODE (on a Macbook) is a wrestling match.  But I've managed to get everything to work except the image managing library SOIL2.

Has anyone had success with this?

I have done the following steps:

  • compiled soil2 with premake and make on the Mac.
  • added all the header files to /usr/local/include/SOIL2
  • added a reference to /usr/local/include to Header Search Paths in Build Settings
  • added a reference to the directory containing the libsoil2-debug.a file to "Link Binary with libraries" under Build Phases
  • added "#include <SOIL2/SOIL2.h> to the program

The error message I get is from the linker, that it can't find the soil2 library.

I tried adding a path to the .a file also to the Library Search Paths, but then I get lots more errors.

After a couple of days going in circles, I'm really stuck.  Had no problem getting soil2 working on the PC under VS.  Any ideas for XCODE?

I didn't use SOIL but my main environment is macOS and Xcode, if you set Library Search Path correctly then what error are you getting now? Did you set Other Linker Flags e.g. -lSOIL ?

Advertisement

 

23 minutes ago, recp said:

I didn't use SOIL but my main environment is macOS and Xcode, if you set Library Search Path correctly then what error are you getting now? Did you set Other Linker Flags e.g. -lSOIL ?

Thanks for the reply!  I'm getting tons of messages of the form "_CFxxxxxx" referenced from: xxxxx in libsoil2-debug.a(SOIL2.o).

So, I'm guessing that it's finding the .a file, but not the stuff that it in turn references?  Would adding a linker flag help?  The soil documentation doesn't mention needing to add one.

By the way, I think soil2 is a static library.

If you added .a file by drag and drop Xcode may do it for you. If it is not presents in Linked Frameworks and Libraries then I suggest add that flag. Probably -lSOIL2 if it is libSOIL2.a I would add that. Probably it will fix your issue

Also if you don't set linker flags then there is no reason to set search library path I think. 

EDIT: 
It seems lib name is libsoil2-debug.a so it must be -lsoil2-debug 

It's already listed in Linked Frameworks and Libraries.

Tried adding the other linker flag, no change.

11 minutes ago, scottgordon said:

It's already listed in Linked Frameworks and Libraries.

Tried adding the other linker flag, no change.

I tried for you; I downloaded SOIL2 and compiled, linked to my existing project (C99 + ObjectiveC (for UI) ) with drag / drop. I didn't get any linker errors. Also I removed it from Linked Frameworks and Libraries and set it manually in Other Linker Flags then it worked again. 

NOTE: I used `premake4 xcode4` for compiling

You said you got error like _CFxxxxxx. AFAIK CF stands for Apple's CoreFoundation.framework maybe your linker errors are not related to SOIL2 itself? 

Advertisement

That was a huge hint.  I went back into "Link Binary with Libraries", and added the CoreFoundation framework.  It then built successfully.

It's having other issues, but thank you that looks like it got me past one hump.

Is it normal to have to specify that manually like that?

EDIT:  BTW, a HUGE thank you for actually trying it yourself.  That was very nice of you.

EDIT2:  Got everything else to work too.  recp, I owe you one.

For the benefit of anyone stumbling on this thread, here are all the shenanigans I had to do to get SOIL2 to finally work in XCODE:

  • compiled soil2 with premake and make on the Mac.  I used the command that sets up for make, rather than for xcode, and used "make" rather than xcode to build soil2.  This resulted in a soil2-debug.
  • added all the header files to /usr/local/include/SOIL2 (had to use sudo for this)
  • added a reference to /usr/local/include to Header Search Paths in Build Settings
  • added a reference to the directory containing the libsoil2-debug.a file to "Link Binary with libraries" under Build Phases
  • added the path to the .a file also to the Library Search Paths
  • searched for and added CoreFoundation framework into the "Link Binary with Libraries" (under Build Phases)
  • added "#include <SOIL2/SOIL2.h> to the program

Thanks so much!! I've been trying to link it correctly for the past 3 days with no luck. I couldn't find anything on the web... I was just missing the CoreFoundation lib. Thanks again! :)

This topic is closed to new replies.

Advertisement