paho.mqtt.cpp交叉编译

开发板 rk3288 + lubuntu 16.04
主机 Ubuntu16.04
编译之前可能要安装一些软件,可参考paho.mqtt.cpp文档:[https://github.com/eclipse/paho.mqtt.cpp]

openssl-OpenSSL_1_0_0-stable.zip   paho.mqtt.c-master.zip   paho.mqtt.cpp-master.zip

1.openssl

#cd openssl-OpenSSL_1_0_0-stable
#./Configure no-asm shared linux-generic32 no-async --prefix=$(pwd)/install --cross-compile-prefix=arm-linux-gnueabihf-
#make depend
#make
#make install
#ls install
bin  include  lib  ssl

关于:linux-generic32 由于 rk3288 是32位的ARM,64位的芯片可以不用设置。查看别人说要修改Makefile去掉-m64, 而使用linux-generic32一次搞定。([https://www.cnblogs.com/djw316/p/10786173.html])

2.paho.mqtt.c

#cd paho.mqtt.c
#mkdir build_arm
#cd build_arm 
#cmake ..  -DCMAKE_C_COMPILER=arm-linux-gnueabihf-gcc  \
-DCMAKE_INSTALL_PREFIX=./install  \
-DPAHO_WITH_SSL=TRUE  \
-DOPENSSL_SSL_LIBRARY=/home/winston/openssl_1.0.0/openssl_arm_install/lib/libssl.so 	\
-DOPENSSL_INCLUDE_DIR=/home/winston/openssl_1.0.0/openssl_arm_install/include 	\
-DOPENSSL_CRYPTO_LIBRARY=/home/winston/openssl_1.0.0/openssl_arm_install/lib/libcrypto.so
#make 
#make install 

或者指定
-DOPENSSL_ROOT_DIR=$OPENSSL_ROOT_DIR
SET(OPENSSL_ROOT_DIR “” CACHE PATH “Directory containing OpenSSL libraries and includes”)
没有测试,感兴趣的同学自行测试
3.paho.mqtt.cpp

#cd paho.mqtt.cpp
#mkdir build_arm
#cd build_arm 
#cmake ..  -DCMAKE_CXX_COMPILER=arm-linux-gnueabihf-g++  \
-DCMAKE_INSTALL_PREFIX=./install  \
-DPAHO_MQTT_C_LIBRARIES=/home/winston/paho.mqtt.c/build_arm/install/lib/libpaho-mqtt3c.so.1.3.4  \
-DPAHO_MQTT_C_INCLUDE_DIRS=/home/winston/paho.mqtt.c/build_arm/install/include  \
-DOPENSSL_SSL_LIBRARY=/home/winston/openssl_1.0.0/openssl_arm_install/lib/libssl.so  \
-DOPENSSL_INCLUDE_DIR=/home/winston/openssl_1.0.0/openssl_arm_install/include  \
-DOPENSSL_CRYPTO_LIBRARY=/home/winston/openssl_1.0.0/openssl_arm_install/lib/libcrypto.so
#make 
#make install 

完成~!

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值