1.準備工具 1).交叉編譯工具 2).下載libcurl和openssl源代碼,我使用的是(openssl 1.0.2o.tar,curl 7.59.0.tar) 3).查看cpu詳細 2.開始編譯 openssl 庫版本 : openssl 1.0.2o march和 D__ARM_MAX_AR ...
1.準備工具
1).交叉編譯工具
2).下載libcurl和openssl源代碼,我使用的是(openssl-1.0.2o.tar,curl-7.59.0.tar)
3).查看cpu詳細
~ # cat /proc/cpuinfo
Processor : ARMv7 Processor rev 5 (v7l)
BogoMIPS : 1196.85
Features : swp half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt
CPU implementer : 0x41
CPU architecture: 7
CPU variant : 0x0
CPU part : 0xc07
CPU revision : 5
Hardware : hi3516a
Revision : 0000
Serial : 0000000000000000
2.開始編譯
openssl
庫版本 : openssl-1.0.2o
-march和-D__ARM_MAX_ARCH__的值需要對比cpu信息調整
編譯參數:
./Configure --prefix=/home/xt/libopenssl --cross-compile-prefix=arm-hisiv300-linux- no-asm shared linux-armv4 -march=armv7-a -D__ARM_MAX_ARCH__=7
make&&make install
curl
庫版本 : curl-7.59.0
編譯參數:
env LDFLAGS=-R/home/xt/lib/libopenssl/lib ./configure --prefix=/home/xt/libcurl CC=arm-hisiv300-linux-gcc --host=arm-hisiv300-linux --with-ssl=/home/xt/libopenssl
需要看到對用SLL支持顯示為支持狀態.
這裡顯示的no就需要檢查前面步驟是否錯誤了
make&&make install
3.測試代碼測試(來自互聯網,本人也是用的這段代碼測試的)
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <curl/curl.h>
static size_t save_response_callback(void *buffer, size_t size, size_t count, void **response)
{
char *ptr = NULL;
printf("buffer is %s\n", (char *)buffer);
ptr = (char *)malloc(count * size + 4);
memcpy(ptr, buffer, count * size);
*response = ptr;
return count;
}
int main(int argc, char *argv[])
{
CURL *curl;
CURLcode res;
char *response = NULL;
if (argc != 2)
{
printf("Usage:file<url>;\n");
return;
}
//curl_global_init(CURL_GLOBAL_DEFAULT);
curl = curl_easy_init();
if (curl != NULL)
{
#if SSL_CERTIFICATE_VERIFICATION
// 方法1, 設定一個SSL判別證書, 未測試
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 1L);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1L);
curl_easy_setopt(curl, CURLOPT_CAINFO, "cacert.pem"); // TODO: 設置一個證書文件
#else
// 方法2, 設定為不驗證證書和HOST
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
#endif
curl_easy_setopt(curl, CURLOPT_HEADER, 0); //設置httpheader 解析, 不需要將HTTP頭寫傳入回調函數
curl_easy_setopt(curl, CURLOPT_URL, argv[1]);
curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L); //顯示HTTP狀態碼
curl_easy_setopt(curl, CURLOPT_VERBOSE, 0L); // TODO: 打開調試信息
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1); //設置允許302 跳轉
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &save_response_callback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, response);
//curl_easy_setopt(curl, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); //指定解析到的IP地址格式,多IP才有意義
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 10L); //在發起連接前等待的時間
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1L); //忽略所有的curl傳遞給php進行的信號
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 30L); //設置cURL允許執行的最長秒數(下載大文件的時候需要調節)
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1); //linux多線程情況應註意的設置(防止curl被alarm信號干擾)
set_share_handle(curl);
res = curl_easy_perform(curl);
if (res != CURLE_OK)
{
printf("curl_wasy_perform error = %s", curl_easy_strerror(res));
}
printf("response<%s>\n", response);
curl_easy_cleanup(curl);
}
}
官方例子:https://curl.haxx.se/libcurl/c/https.html