2019年6月21日

openssh交叉编译

摘要: openssh交叉编译: 1.官网下载地址: https://www.mindrot.org/openssh_snap/ 2.配置: openssh需要依赖openssl和zlib 首先需要编译另两个依赖库,可以参见作者其它两篇随笔。 作者将交叉编译好的openssl和zlib放到/usr/loca 阅读全文

posted @ 2019-06-21 16:59 Alvin2012 阅读(2805) 评论(0) 推荐(0) 编辑

zlib交叉编译

摘要: zlib交叉编译: 1.mkdir __install 2.export CC=arm-linux-gnueabihf-gcc 3../configure --prefix=$(pwd)/__install 4.make 5.make install 注:zlib的configure不支持配置CC, 阅读全文

posted @ 2019-06-21 16:01 Alvin2012 阅读(479) 评论(0) 推荐(0) 编辑

C语言编译动态链接库

摘要: C语言编译动态链接库: gcc test.c -fPIC -shared -o libtest.so 阅读全文

posted @ 2019-06-21 15:16 Alvin2012 阅读(178) 评论(0) 推荐(0) 编辑

导航