liblinear icon indicating copy to clipboard operation
liblinear copied to clipboard

Error on 'make' under 'python/' for x86_64 unix

Open lucas0 opened this issue 6 years ago • 0 comments

I'm getting

make -C .. lib
if [ "Darwin" = "Darwin" ]; then \
		SHARED_LIB_FLAG="-dynamiclib -Wl,-install_name,liblinear.so.3"; \
	else \
		SHARED_LIB_FLAG="-shared -Wl,-soname,liblinear.so.3"; \
	fi; \
	c++ ${SHARED_LIB_FLAG} linear.o tron.o blas/blas.a -o liblinear.so.3
ld: archive has no table of contents file 'blas/blas.a' for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[1]: *** [lib] Error 1
make: *** [lib] Error 2

when trying to make under python/ is there any solution for that? Running on mac mojave

lucas0 avatar Dec 21 '18 10:12 lucas0