I installed proj.4 library with homebrew on my Mac 10.7 (using gcc-4.2). When trying to compile the following code:

#include <proj_api.h>


int main(void) {
    projPJ pj_merc;
    pj_merc = pj_init_plus("+proj=merc");
    pj_free(pj_merc);
    return 0;
}

I'm getting this error:

$ gcc-4.2 test.c 
Undefined symbols for architecture x86_64:
  "_pj_init_plus", referenced from:
      _main in cccf4vey.o
  "_pj_free", referenced from:
      _main in cccf4vey.o
ld: symbol(s) not found for architecture x86_64
collect2: ld returned 1 exit status

EDIT: The library file is 64bit (gcc-4.2 -m32 test.c lead to the same error):

$ file /usr/local/lib/libproj.dylib 
/usr/local/lib/libproj.dylib: Mach-O 64-bit dynamically linked shared library x86_64

Any ideas what's wrong?

Thank you!

link|improve this question

56% accept rate
did you install the 64 bit version of the library? Do you get the same error when using the gcc flag to compile 32 bit code as well? – Jesus Ramos Aug 7 '11 at 9:02
@Jesus: see EDIT. – ahojnnes Aug 7 '11 at 9:06
This might be a dumb question but is the library pre-built .o files or are they .so files that you have to use -lproj_api? I'm asking because I'm unsure of the library as I've never heard of it. – Jesus Ramos Aug 7 '11 at 9:08
feedback

1 Answer

up vote 1 down vote accepted

You should link against the library.

gcc-4.2 test.c -L/usr/local/lib -lproj

This is what the error is complaining about

link|improve this answer
that's what I just said... anyways.... – Jesus Ramos Aug 7 '11 at 9:10
thank you, that's it! – ahojnnes Aug 7 '11 at 9:13
@Jesus I hadn't seen your comment before I posted the answer, It's one of those typical errors when starting to use external libraries. The whole framework idea makes using external libraries much easier as it carries along the -I, -L and -l options – Petesh Aug 7 '11 at 9:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.