-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compiling unsuccessful #133
Comments
This kind of error happens when this flag "-fopenmp" is set somewhere but not everywhere. Can you please : (1) run "make clean", then "make homography", and post the output |
Thanks for your response. elske@laptop: |
It looks like you have set some variables that affect the compilation (for example CPPFLAGS, or TARGET_ARCH). The settings "-DCPU_LITTLE_END -mtune=native -msse2 -mfpmath=sse -fopenmp" that appear on your compilation lines never appear inside the s2p code, nor they are produced by your installation of gdal, so they must have been set by your system. You can look at all your variables by running "env", and then check for the offending ones by, for example "env | grep CPU". If you remove these variables the compilation should work. Setting variables to direct the compilation is alright, but in your case they seem to be in an inconsistent state, because "-fopenmp" is only added to the compilation, and not to the link settings. |
Thanks.
|
New to all this, so sorry if making obvious mistakes...
Running on ubuntu 16.04
When compiling following error occurs:
elske@laptop:~/software/s2p$ make all
make -j -C c/homography
make[1]: Entering directory '/home/elske/software/s2p/c/homography'
g++ -o homography main.o LibImages/LibImages.o Utilities/Utilities.o Utilities/Memory.o Utilities/Parameters.o Utilities/Time.o LibHomography/Homography.o LibHomography/Splines.o
gdal-config --libs
LibImages/LibImages.o: In function
Image::Image()': LibImages.cpp:(.text+0x2c): undefined reference to
omp_get_max_threads'LibImages/LibImages.o: In function
Image::Image(unsigned long, unsigned long, unsigned long, unsigned long)': LibImages.cpp:(.text+0x82): undefined reference to
omp_get_max_threads'LibImages/LibImages.o: In function
Image::Image(float const*, unsigned long, unsigned long, unsigned long)': LibImages.cpp:(.text+0x146): undefined reference to
omp_get_max_threads'LibImages/LibImages.o: In function
Image::readGDAL(char const*, unsigned long)': LibImages.cpp:(.text+0xda7): undefined reference to
omp_get_max_threads'LibImages/LibImages.o: In function
Image::copyInner(Image&, int) const': LibImages.cpp:(.text+0x2960): undefined reference to
omp_get_max_threads'LibImages/LibImages.o:LibImages.cpp:(.text+0x486e): more undefined references to `omp_get_max_threads' follow
collect2: error: ld returned 1 exit status
Makefile:15: recipe for target 'homography' failed
make[1]: *** [homography] Error 1
make[1]: Leaving directory '/home/elske/software/s2p/c/homography'
makefile:45: recipe for target 'homography' failed
make: *** [homography] Error 2
Please advice....
Thanks,
Elske
The text was updated successfully, but these errors were encountered: