linux - What is -lnuma and what program uses it for compilation? -



linux - What is -lnuma and what program uses it for compilation? -

i compiling message passing programme using openmpi mpicxx on linux desktop. makefile following:

mpicxx -c readinp.cpp mpicxx -o exp_fit driver.cpp readinp.o

at point next error:

/usr/lib64/gcc/x86_64-suse-linux/4.5/../../../../x86_64-suse-linux/bin/ld: cannot find -lnuma

my questions are:

what -lnuma? using it? how should go linking it?

the build script can't find numa library - numa (non uniform memory access). -l alternative tells linker link library, scheme ether doesn't have right 1 installed or search path linker incomplete/wrong.

try querying package-manager (apt or rpm) bundle libnuma.

linux compilation linker mpi

Comments

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

c++ - compiler errors when initializing EXPECT_CALL with function which has program_options::variables_map as parameter -

How do I check if an insert was successful with MySQLdb in Python? -