lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> 	bn.so: cannot open shared object file: No such file or directory

I'm not sure but it seems the linker is not finding libcrypto.
Run "ldd bn.so" and check that libcrypto is found or something else is missing.

> Note that I had to had -fPIC to make the compiler happy.

This is mentioned in
	http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/install.html#building

> How should I modify the makefile to build on this architecture?

As mentioned in the web page above, just add -fPIC to CFLAGS.