Not sure this is the right forum, but I'll give it a go anyways.
I am trying to compile and install the libeemd library (https://bitbucket.org/luukko/libeemd). My end goal is to include the C library in a Matlab script later on using MEX, however, I have run into a wall.
According to the README file included in the package, I can compile the library using make when in the top level directory, however, when that is done, I get the following result
Alexanders-MacBook-Pro-2:libeemd neergaard$ make
gcc -Wall -Wextra -std=c99 -pedantic -Wno-unknown-pragmas -Wshadow -Wpointer-arith -g -DEEMD_DEBUG=0 -fopenmp src/eemd.c -fPIC -shared -Wl,-soname,libeemd.so.1.3 -I/opt/local/include -L/opt/local/lib -lgsl -lgslcblas -lm -DHAVE_INLINE -o libeemd.so.1.3
ld: library not found for -lgomp
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [libeemd.so.1.3] Error 1
I'll admit, I do not have that much experience in this sort of thing, but I'm hoping that some of you smart guys could give me some pointers as to how I'm going to work around this.
Any help is appreciated greatly. If I haven't supplied enough information, please let me know.
Thank you!