2

我正在为 pi 项目中需要的库设置交叉编译项目。我想通过最新的 mosquitto 库,我已经弄清楚我需要传递什么才能使其正确构建。不幸的是,当我定义我的 BUILD_COMMAND 时,我似乎无法正确设置变量以在调用之前进行。

这是我的 CMakeLists.txt 中定义的外部项目:

ExternalProject_Add(mosquitto
    URL ${SRC_URL} URL_MD5 ${SRC_MD5}
    BUILD_IN_SOURCE 1
    CONFIGURE_COMMAND echo "No configuration necessary."
    BUILD_COMMAND cd <SOURCE_DIR>/lib && export CC=gcc && export CXX=g++ && export CROSS_COMPILE=${CROSS_COMPILE_TRIPLE} && export CFLAGS=--sysroot=${CMAKE_SYSROOT} && export LDFLAGS="--sysroot=${CMAKE_SYSROOT} -Wl,-rpath-link,${CMAKE_SYSROOT}/lib/arm-linux-gnueabihf -Wl,-rpath-link,${CMAKE_SYSROOT}/usr/lib/arm-linux-gnueabihf -L${CMAKE_SYSROOT}/usr/lib/arm-linux-gnueabihf" && make --trace

以下是失败步骤的 make 输出:

arm-linux-gnueabihf-gcc -shared "--sysroot=/home/heardg/pi/system/devroot -Wl,-rpath-link,/home/heardg/pi/system/devroot/lib/arm-linux-gnueabihf -Wl,-rpath-link,/home/heardg/pi/system/devroot/usr/lib/arm-linux-gnueabihf -L/home/heardg/pi/system/devroot/usr/lib/arm-linux-gnueabihf" -Wl,--version-script=linker.version -Wl,-soname,libmosquitto.so.1 mosquitto.o logging_mosq.o memory_mosq.o messages_mosq.o net_mosq.o read_handle.o read_handle_client.o read_handle_shared.o send_mosq.o send_client_mosq.o socks_mosq.o srv_mosq.o thread_mosq.o time_mosq.o tls_mosq.o util_mosq.o will_mosq.o -o libmosquitto.so.1  -lrt -lssl -lcrypto -lpthread -lcares
/home/heardg/pi/linaro/gcc-linaro-4.9-2016.02-x86_64_arm-linux-gnueabihf/bin/../lib/gcc/arm-linux-gnueabihf/4.9.4/../../../../arm-linux-gnueabihf/bin/ld: cannot find crti.o: No such file or directory
/home/heardg/pi/linaro/gcc-linaro-4.9-2016.02-x86_64_arm-linux-gnueabihf/bin/../lib/gcc/arm-linux-gnueabihf/4.9.4/../../../../arm-linux-gnueabihf/bin/ld: cannot find -lrt
/home/heardg/pi/linaro/gcc-linaro-4.9-2016.02-x86_64_arm-linux-gnueabihf/bin/../lib/gcc/arm-linux-gnueabihf/4.9.4/../../../../arm-linux-gnueabihf/bin/ld: cannot find -lssl
/home/heardg/pi/linaro/gcc-linaro-4.9-2016.02-x86_64_arm-linux-gnueabihf/bin/../lib/gcc/arm-linux-gnueabihf/4.9.4/../../../../arm-linux-gnueabihf/bin/ld: cannot find -lcrypto
/home/heardg/pi/linaro/gcc-linaro-4.9-2016.02-x86_64_arm-linux-gnueabihf/bin/../lib/gcc/arm-linux-gnueabihf/4.9.4/../../../../arm-linux-gnueabihf/bin/ld: cannot find -lpthread
/home/heardg/pi/linaro/gcc-linaro-4.9-2016.02-x86_64_arm-linux-gnueabihf/bin/../lib/gcc/arm-linux-gnueabihf/4.9.4/../../../../arm-linux-gnueabihf/bin/ld: cannot find -lcares
collect2: error: ld returned 1 exit status
Makefile:46: recipe for target 'libmosquitto.so.1' failed`

我发现导致问题的是 LDFLAGS 周围的引号。

"--sysroot=/home/heardg/pi/system/devroot -Wl,-rpath-link,/home/heardg/pi/system/devroot/lib/arm-linux-gnueabihf -Wl,-rpath-link,/home/heardg/pi/system/devroot/usr/lib/arm-linux-gnueabihf -L/home/heardg/pi/system/devroot/usr/lib/arm-linux-gnueabihf"

如果我手动运行链接命令并删除上面的双引号,它会成功。

如何更好地形成 BUILD_COMMAND 中的参数以摆脱引号?

4

1 回答 1

1

当有很多命令时ExternalProject_Add,使用执行它们的脚本可能是明智的。至于将 CMake 变量传递给脚本,它们可以通过脚本的参数传递,也可以通过脚本本身的配置传递:

build_mosquitto.sh.in

# The only argument to the script is mosquitto's source directory.
source_dir=$1

exports CC=gcc
export CXX=g++
export CROSS_COMPILE=@CROSS_COMPILE_TRIPLE@
# ... other exports

cd ${source_dir}/lib && make

CMakeLists.txt

configure_file("build_mosquitto.sh.in" "build_mosquitto.sh" @ONLY)

ExternalProject_Add(mosquitto
    URL ${SRC_URL} URL_MD5 ${SRC_MD5}
    BUILD_IN_SOURCE 1
    CONFIGURE_COMMAND echo "No configuration necessary."
    BUILD_COMMAND sh "${CMAKE_CURRENT_BINARY_DIR}/build_mosquitto.sh" <SOURCE_DIR>
)
于 2016-10-08T21:59:48.363 回答