博客專欄

EEPW首頁 > 博客 > 如何交叉編譯curl?

如何交叉編譯curl?

發(fā)布人:電子禪石 時(shí)間:2020-01-16 來源:工程師 發(fā)布文章

如何交叉編譯curl?

1. 先準(zhǔn)備一下openssl庫

  編譯openssl庫的方法在此

2. 獲取curl源碼

  wget https://curl.haxx.se/download/curl-7.65.3.tar.gz

2. 解壓

  tar xvf curl-7.65.3.tar.gz -C ~/

  cd ~/curl-7.65.3

3. 配置

  CPPFLAGS="-I/home/jello/openssl/ -I/home/jello/openssl/include" LDFLAGS="-L/home/jello/openssl/lib" LIBS="-ldl" ./configure --host=arm-linux CC=arm-linux-gcc CXX=arm-linux-g++ --with-ssl --enable-shared --enable-static --disable-dict --disable-ftp --disable-imap --disable-ldap --disable-ldaps --disable-pop3 --disable-proxy --disable-rtsp --disable-smtp --disable-telnet --disable-tftp --disable-zlib --without-ca-bundle --without-gnutls --without-libidn --without-librtmp --without-libssh2 --without-nss --without-zlib --prefix=/home/jello/curl

 

4. 編譯

  make -j4

5. 安裝

  make install

注意:configure  是由另一個(gè)buildconf 文件生成的。注意LIBS 要鏈接具體的三個(gè)庫,否則鏈接時(shí)候會(huì)出錯(cuò)。

CPPFLAGS="-I/home/gerry01/imx6q/openssl -I/home/gerry01/imx6q/openssl/include" LDFLAGS="-L/home/gerry01/imx6q/openssl/lib" LIBS="-ldl -lssl -lcrypto" ./configure --host=arm-linux CC=/opt/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-gcc CXX=/opt/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-g++ --with-ssl --enable-shared --enable-static --disable-dict --disable-ftp --disable-imap --disable-ldap --disable-ldaps --disable-pop3 --disable-proxy --disable-rtsp --disable-smtp --disable-telnet --disable-tftp --disable-zlib --without-ca-bundle --without-gnutls --without-libidn --without-librtmp --without-libssh2 --without-nss --without-zlib --prefix=/home/gerry01/imx6q/curl

10.png

*博客內(nèi)容為網(wǎng)友個(gè)人發(fā)布,僅代表博主個(gè)人觀點(diǎn),如有侵權(quán)請(qǐng)聯(lián)系工作人員刪除。

DIY機(jī)械鍵盤相關(guān)社區(qū):機(jī)械鍵盤DIY




關(guān)鍵詞: curl

技術(shù)專區(qū)

關(guān)閉