尝试构建一个完全独立的 OTP,它可以独立于系统上安装的库移动。
从源代码构建 OpenSSL 1.0.0d,如下所示:
./config --prefix=<open-ssl-dir>
make
make install
然后是 OTP R14B03:
./configure --prefix=<erlang-dir> --with-ssl=<open-ssl-dir> --without-termcap
然后,Erlang 的 Make 失败如下:
relocation R_X86_64_32 against `OPENSSL_ia32cap_P' can not be used when making a shared object; recompile with -fPIC
我们说的是 Ubuntu 10.04。非常感谢任何帮助 - 谢谢!