我是Linux的新手,但需要一些事情,所以我正在努力完成任务。 我需要有一个openssl静态编译用于专有的Linux发行版,几乎没有工具来构建包。 我遇到一个帖子,解释了如何做到这一点。
select Member_ID ,Create_Date, STRING_AGG (Answer, ',')
from table_1 group by Create_Date, Member_ID
直到这一点,一切顺利。我没有任何package-root,而且我只是作为一个例子,但是我在编译openssl的过程中写了什么呢?
make INSTALL_PREFIX = / tmp / openssl-1.0.1e install ?? 我没有安装,只需install.com或安装
cd /tmp
wget http://www.openssl.org/source/openssl-1.0.1e.tar.gz
tar -zxvf openssl-1.0.1e.tar.gz
cd openssl-1.0.1e
./config
I then Added "-static -static-libgcc" to the CFLAG line of openssl-
1.0.1e/Makefile (Note this was AFTER I ran ./config). Then I built it like
normal.
由于