You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'm not sure if this is the right place to do this, as I'm not very familiar with GitHub.
I have an issue trying to install Admixtools on my Ubuntu machine.
I'm basically following the tutorial from the README.INSTAL file.
After I do "make all" I get 2 errors (probably) meaning libraries "gsl" and "openblas" can't be found:
"
gcc -L./nicksrc qp3Pop.o nicksrc/libnick.a qpsubs.o mcio.o ldsubs.o admutils.o egsubs.o regsubs.o -lgsl -lopenblas -lm -lnick -o qp3Pop
/usr/bin/ld: cannot find -lgsl
/usr/bin/ld: cannot find -lopenblas
collect2: error: ld returned 1 exit status
: recipe for target 'qp3Pop' failed
make: *** [qp3Pop] Error 1
"
I have no clue how to solve this.
Please help.
The text was updated successfully, but these errors were encountered:
I don't have an Ubuntu machine available to verify these are correct. The package names may be different.
Once these are installed, try to run "make". If this fails, then you need to tell the linker where to find the gsl and openblas libraries. You can do this on the command line with something like:
make LDFLAGS="-L/usr/local/opt/openblas/lib -L/usr/local/opt/gsl/lib"
Or you can modify the Makefile.
I don't know where these libraries will be located on your machine, so the above paths are simply examples. You can find them using the standard utility find with something like:
Hi,
I'm not sure if this is the right place to do this, as I'm not very familiar with GitHub.
I have an issue trying to install Admixtools on my Ubuntu machine.
I'm basically following the tutorial from the README.INSTAL file.
After I do "make all" I get 2 errors (probably) meaning libraries "gsl" and "openblas" can't be found:
"
gcc -L./nicksrc qp3Pop.o nicksrc/libnick.a qpsubs.o mcio.o ldsubs.o admutils.o egsubs.o regsubs.o -lgsl -lopenblas -lm -lnick -o qp3Pop
/usr/bin/ld: cannot find -lgsl
/usr/bin/ld: cannot find -lopenblas
collect2: error: ld returned 1 exit status
: recipe for target 'qp3Pop' failed
make: *** [qp3Pop] Error 1
"
I have no clue how to solve this.
Please help.
The text was updated successfully, but these errors were encountered: