Reputation: 2749
I'm a complete beginner to Apple's Xcode, but I have followed the Xcode documentation and the advice of a few related questions without success.
I installed GMP to /usr/local/bin, wrote a short program using the library, and compiled with gcc main.c -lgmp
. It compiled with no warnings or errors, and the executable worked flawlessly.
I started a new Xcode project (Command Line Tool; Type: C), copied the code to the newly created main.c, and opened the project build settings. From there I set Linking > Other Linker Flags to -lgmp
and Search Paths > Library Search Paths to /usr/local/bin
. However, the build fails with the preprocessor error "Gmp.h: No such file or directory".
I have tried almost every header imaginable:
#include "gmp.h"
#include <gmp.h>
#include "gmp"
#include "libgmp.a"
. . .
This has been my main obstacle over the last three months which has prevented me from learning C. Any help leading me to an eventual solution would be greatly appreciated.
Upvotes: 3
Views: 6615
Reputation: 510
I have updated my system from snow leopard to mountain lion and had to install gmp
.
First of all I have installed Xcode CommandLineTools set.
Secondly, installed Homebrew. Then with it I have done steps in this topic: https://apple.stackexchange.com/questions/38222/how-do-i-install-gcc-via-homebrew
In my last step, made changes to an xcode project as colleague Marcus Karlsson told. It's finally working! Very big Thank You :)
Upvotes: 2
Reputation:
There's a few things you have to set up in your Xcode project. For example, I have gmp installed in /opt/gmp/5.0.2
and I will use that as an example. The actual library is installed into /opt/gmp/5.0.2/lib
and the header files into /opt/gmp/5.0.2/include
. When installing the library setting the --PREFIX flag to /opt/gmp/5.0.2
would handle this automatically. If you don't set this flag the prefix is usually set to /usr/local
by default.
/opt/gmp/5.0.2/include
./opt/gmp/5.0.2/lib
.Since the header search path has been set, you should now be able to include the header file like this:
#include <gmp.h>
Of course, replace /opt/gmp/5.0.2
with the PREFIX path you used when you installed gmp.
Lastly, you typically don't install libraries to /usr/local/bin
, you would install to /usr/local
and let any binaries be installed into bin while libraries like these would be installed into lib. Of course any path scheme would work, I usually recommend /opt/<project-name>/<version-number>
since it allows me to keep better track of what I have installed and have multiple versions of the same libraries and tools without having to deal with collisions.
Upvotes: 8