mqtt 开源软件 mosquitto 的交叉编译(centOS7 cmake方式编译 mosquitto-1.5.5 openssl1.1.1g)
公司的工作是要交叉编译一版mosquitto,要求版本为mosquitto1.5.5,为此我做了一些工作,查看一些博客,主要参考的博客是https://blog.csdn.net/ljy160623/article/details/86544239在这里讲解的非常细致,但是因为平台和相关软件的版本不同,我在实际的操作中也进行了一些其他的探索,进而成功编译出一版软件。以下为具体的操作。1openss
公司的工作是要交叉编译一版mosquitto,要求版本为mosquitto1.5.5,为此我做了一些工作,查看一些博客,主要参考的博客是https://blog.csdn.net/ljy160623/article/details/86544239在这里讲解的非常细致,但是因为平台和相关软件的版本不同,我在实际的操作中也进行了一些其他的探索,进而成功编译出一版软件。以下为具体的操作。
本文所说的安装包以及最后编译得到的包见链接:
https://download.csdn.net/download/LCY133/33987640?spm=1001.2014.3001.5501
- 1 openssl的交叉编译:(同时也是本次交叉编译的一项工作,而且为mosquitto交叉编译的基础,所以写在前面)
- 版本 openssl1.1.1g
下载:https://www.openssl.org/source/old/
在交叉编译openssl1.1.1g时,通过Ubuntu16.04进行时总是不成功,所以我选择使用centos7进行,过程记录如下: - gcc编译:
不重要的指令:
cp openssl-1.1.1g.tar.gz /opt/north/
tar -zxvf openssl-1.1.1g.tar.gz
cd openssl-1.1.1g
mkdir build
核心内容:
./config --prefix=/opt/north/openssl-1.1.1g/build -shared
# prefix配置makefile的install位置
make
make install
- 交叉编译:
./config no-asm -shared --prefix=/opt/mosquitto/arm/ssl/ CC=/opt/gcc-linaro-5.3-2016.02-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-gcc CXX=/opt/gcc-linaro-5.3-2016.02-x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf-g++
make
make install
(其中的–prefix后的内容为install要放的位置,CC和CXX填写的就是CC与C++程序所用编译链的路径)
注:如果遇到 “-m64” 错误,vim进入Makefile,找到"-m64"并删除;重新执行make
注:遇到这样的错误了,一共有两个-m64,查找方式:在vi编辑器下通过esc进入输入模式,/+要查找的内容就可以进行查找相关的内容
删除这两个-m64,然后就可以正常make了
编译过程中输出内容比较多,在此不再粘贴
在编译后,可以查看/opt/mosquitto/arm/ssl/lib下的so文件是否为ARM格式,通过file + *.so
如下通过:file libssl.so.1.1 可以看到是ARM类型的
在完成make install后,在include/openssl下的内容为要使用的头文件,在编译时对这些文件的位置有要求,在编译mosquitto时需要用到这些头文件。
- 2 准备工作:cmake autoconf 和libtool的安装
cmake-3.7.2
wget https://cmake.org/files/v3.7/cmake-3.7.2.tar.gz
autoconf 用于生成configure文件
wget https://alpha.gnu.org/gnu/autoconf/autoconf-2.68b.tar.gz
libtool
wget https://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.gz
新建文件夹,便于以后将所有的移植操作放在这个文件夹内进行
mkdir /opt/mosquitto/
# 解压缩:tar -zxvf *.tar.gz
# 对于autoconf和libtool而言采用:
./configure
make
make install
对于cmake采用:
./bootstrap && make && make install
进行安装
然后执行cmake 出现:
就证明cmake已经安装完成了
- 3 c-ares库交叉编译:
wget https://c-ares.haxx.se/download/c-ares-1.14.0.tar.gz
tar -zxvf c-ares-1.14.0.tar.gz
cd c-ares-1.14.0/
./configure --host=arm-linux CC=arm-linux-gnueabihf-gcc --prefix=/opt/mosquitto/arm/ares
(注:测试时这里不指定CC,则编译出来 的内容不是ARM平台下的)
这个链不再是 ARM下的,在编译mosquitto时会出问题
如果以./configure --host=arm-linux CC=arm-linux-gnueabihf-gcc --prefix=/opt/mosquitto/arm/ares编译的则是正常的。
make && make install
这里相关的截图不再展示,编译过程与openssl的编译相同
在编译出之后,可以查看到arm/areas/lib/内的so文件为ARM平台下的
- 4.交叉编译e2fsprogs
下载地址:https://sourceforge.net/projects/e2fsprogs/files/e2fsprogs/1.41.14/e2fsprogs-1.41.14.tar.gz/download
./configure --host=arm-linux prefix=/opt/mosquitto/arm/e2fsprogs
make
make install
如果添加CC参数,则在编译中出现错误:
如果不添加CC参数,则出现平台为x86-64的程序:
但是按照这种方式编译之后,似乎并不会对后续的交叉编译有影响。
把lib下的uuid目录拷贝到安装目/home/mosquitto/arm/e2fsprogs下,
sudo cp -r lib/uuid/ /opt/mosquitto/arm/e2fsprogs/
在arm/e2fsprogs下出现:
- 5.mosquitto1.5.5交叉编译之cmake配置
正题到了,前戏有点长,不过前戏一般是要好过正题的,前戏好了,正题就顺利的多了,如果前面的铺垫磕磕绊绊,挖坑无数,那到了正题也就秒了----执行make出现好多报错。
前文铺垫了采用cmake的安装,在本文描述的是以cmake的 方式交叉编译的方式
mosquitto 下载地址:https://mosquitto.org/files/source/
在下载.tar.gz的文件之后进行解压,
tar -zxvf mosquitto-1.5.5.tar.gz
cd mosquitto-1.5.5/
vim CMakeList.txt
查找find_package 方式:输入模式下输入/find_package
找到CMakeList.txt中的find_package
添加:
set(OPENSSL_ROOT_DIR "/opt/mosquitto/arm/ssl")
set(OPENSSL_LIBRARIES "/opt/mosquitto/arm/ssl/lib/")
这里指出了openssl的位置
同样是这个文件找到:option(WITH_SRV “Include SRV lookup support?” ON)
这里的ON默认是OFF的,这里也需要修改,以配置UUID的位置
添加:
# Simple detect uuid
set(CMAKE_INCLUDE_PATH /opt/mosquitto/arm/e2fsprogs)
set(CMAKE_LIBRARY_PATH /opt/mosquitto/arm/e2fsprogs/uuid)
find_path(UUID_HEADER NAMES uuid/uuid.h)
if (UUID_HEADER)
include_directories(${UUID_HEADER})
message(STATUS "found uuid/uuid.h at:${UUID_HEADER}")
find_library(UUID_LIBRARY NAMES uuid)
if (UUID_LIBRARY)
message(STATUS "found libuuid at:${UUID_LIBRARY}")
set (LIBRARIES ${LIBRARIES} ${UUID_LIBRARY})
else(UUID_LIBRARY)
message(FATAL_ERROR "uuid library not found!" )
endif (UUID_LIBRARY)
else (UUID_HEADER)
message(WARNING "uuid library not found.")
endif (UUID_HEADER)
配置UUID的位置
然后:
修改目录中lib目录下的CMakeList.txt文件,注:上一个是mosquitto-1.5.5下,这里是mosquitto-1.5.5/lib下的
vim lib/CMakeList.txt
找到:if (${WITH_SRV} STREQUAL ON)
这一段修改为:
if (${WITH_SRV} STREQUAL ON)
# Simple detect c-ares
find_path(ARES_HEADER ares.h /opt/mosquitto/arm/ares/include)
if (ARES_HEADER)
add_definitions("-DWITH_SRV")
include_directories(${ARES_HEADER})
message(STATUS "found ares.h at:${ARES_HEADER}")
find_library(ARES_LIBRARY cares /opt/mosquitto/arm/ares/lib)
if (ARES_LIBRARY)
message(STATUS "found libcares at:${ARES_LIBRARY}")
set (LIBRARIES ${LIBRARIES} ${ARES_LIBRARY})
else(ARES_LIBRARY)
message(FATAL_ERROR "not found libcares" )
endif (ARES_LIBRARY)
else (ARES_HEADER)
message(WARNING "c-ares library not found.")
endif (ARES_HEADER)
endif (${WITH_SRV} STREQUAL ON)
修改后的效果:
完成配置之后来到mosquitto-1.5.5目录下,通过CMakeList配置cmake:
cmake -DCMAKE_C_COMPILER="arm-linux-gnueabihf-gcc" -DCMAKE_CXX_COMPILER="arm-linux-gnueabihf-g++" -DCMAKE_INSTALL_PREFIX=/opt/mosquitto/arm/mosquitto/ CMakeLists.txt
注:填写了编译链和install路径
在执行时会遇到:找不到openssl lib的情况
和找不到UUID LIB的情况
这是因为没有在CMakeCache.txt内配置openssl和UUID的路径。
配置openSSL
在CMakeCache.txt 内 搜索OPENSSL,找到这里进行修改
//Path to a library.
OPENSSL_CRYPTO_LIBRARY:FILEPATH=/opt/mosquitto/arm/ssl/lib/libcrypto.so
//Path to a file.
OPENSSL_INCLUDE_DIR:PATH=/opt/mosquitto/arm/ssl/include
//Path to a library.
OPENSSL_SSL_LIBRARY:FILEPATH=/opt/mosquitto/arm/ssl/lib/libssl.so
- 插曲:下载和交叉编译libuuid:
参照博客:http://blog.csdn.net/litao31415/article/details/52917160
下载链接:https://sourceforge.net/projects/libuuid/?source=typ_redirect
不过这个链接再下载时需要点进去稍等一下,这个要注意,
tar -zxvf libuuid-1.0.3.tar.gz
cd libuuid-1.0.3/
./configure --host=arm-linux CC=arm-linux-gnueabihf-gcc --prefix=/opt/mosquitto/arm/libuuid
make
make install
将编译得到的libuuid的库文件复制到编译链的lib内:
cp /opt/mosquitto/arm/libuuid/lib/libuuid*
/opt/gcc-linaro-5.3-2016.02-x86_64_arm-linux-gnueabihf/arm-linux-gnueabihf/lib
通过cmake进行编译:
cmake -DCMAKE_C_COMPILER="arm-linux-gnueabihf-gcc" -DCMAKE_CXX_COMPILER="arm-linux-gnueabihf-g++" -DCMAKE_INSTALL_PREFIX=/opt/mosquitto/arm/mosquitto/ CMakeLists.txt
这里我在原博客内没有找到,我查看了下CMakeCache.txt,在里面找到UUID_LIBRARY,
修改了库文件的位置后再次尝试:
至此终于完成了cmake的配置。
-
- mosquitto-1.5.5 的make和make install
执行make
通过查找config.h可以发现内需要找到openssl/opensslconf.h,需要将这个文件夹放到mosquitto1.5.5文件夹内
- mosquitto-1.5.5 的make和make install
cp -r /opt/mosquitto/arm/ssl/include/openssl/ /opt/mosquitto/mosquitto-1.5.5/
make clean
make
再次make:
这里发现缺少了uuid/uuid.h,与上个问题相似,找到uuid的include文件夹
cp -r /opt/mosquitto/arm/libuuid/include/uuid/ /opt/mosquitto/mosquitto-1.5.5/
make clean
make
再次make
完成之后可以进行make install
也顺利完成。
执行这份工作用了1天时间,复现和整理文档也用了4小时。
更多推荐
所有评论(0)