【问题标题】:GLIBCXX_3.4.26 not found running cross-complied program on BeagleBone在 BeagleBone 上找不到运行交叉编译程序的 GLIBCXX_3.4.26
【发布时间】:2023-08-27 00:15:01
【问题描述】:

我有以下程序:

#include <iostream>
#include <sstream>
using namespace std;

int main()
{
    //ostringstream s;
    cout << "cpp test" << endl;
    return 0;
}

我使用交叉编译器在 Ububtu 20.04 桌面上构建它:

arm-linux-gnueabihf-g++ -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/cpp_test.d" -MT"src/cpp_test.o" -o "src/cpp_test.o" "../src/cpp_test.cpp"
arm-linux-gnueabihf-g++  -o "cpp_test"  ./src/cpp_test.o

然后我将cpp_test复制到BeagleBone Black Wireless板并执行:

debian@beaglebone:~/c$ ./cpp_test 
cpp test
debian@beaglebone:~/c$ ldd cpp_test
    linux-vdso.so.1 (0xbee85000)
    libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0xb6ea1000)
    libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0xb6e78000)
    libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0xb6d7e000)
    libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0xb6d03000)
    /lib/ld-linux-armhf.so.3 (0xb6fbe000)

现在我取消注释 ostringstream s; 行,构建程序,将其复制到 BeagleBone 并执行:

debian@beaglebone:~/c$ ./cpp_test 
./cpp_test: /usr/lib/arm-linux-gnueabihf/libstdc++.so.6: version `GLIBCXX_3.4.26' not found (required by ./cpp_test)
debian@beaglebone:~/c$ ldd cpp_test
./cpp_test: /usr/lib/arm-linux-gnueabihf/libstdc++.so.6: version `GLIBCXX_3.4.26' not found (required by ./cpp_test)
    linux-vdso.so.1 (0xbefa6000)
    libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0xb6e22000)
    libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0xb6d28000)
    /lib/ld-linux-armhf.so.3 (0xb6f3f000)
    libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0xb6cad000)
    libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0xb6c84000)

来自董事会的其他信息:

debian@beaglebone:/usr/lib/arm-linux-gnueabihf$ ls -l | grep libstdc++.so.6
lrwxrwxrwx  1 root root       19 Apr  6  2019 libstdc++.so.6 -> libstdc++.so.6.0.25
-rw-r--r--  1 root root  1019772 Apr  6  2019 libstdc++.so.6.0.25
debian@beaglebone:/usr/lib/arm-linux-gnueabihf$ uname -r
4.19.94-ti-r45
debian@beaglebone:/usr/lib/arm-linux-gnueabihf$ uname -a
Linux beaglebone 4.19.94-ti-r45 #1buster SMP PREEMPT Thu Jun 18 19:18:41 UTC 2020 armv7l GNU/Linux
debian@beaglebone:~$ 字符串 /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.25 | grep GLIBCXX GLIBCXX_3.4 GLIBCXX_3.4.1 ... GLIBCXX_3.4.24 GLIBCXX_3.4.25

来自主机的附加信息:

alex@alex-u20:~$ arm-linux-gnueabihf-g++ -v 使用内置规范。 COLLECT_GCC=arm-linux-gnueabihf-g++ COLLECT_LTO_WRAPPER=/usr/lib/gcc-cross/arm-linux-gnueabihf/9/lto-wrapper 目标:arm-linux-gnueabihf 配置:../src/configure -v --with-pkgversion='Ubuntu 9.3.0-10ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs - -enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 - -enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls -- with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object -- disable-libitm --disable-libquadmath --disable-libquadmath-support --enable-plugin --enable-default-pie --with-system-zlib --without-target-system-zlib --enable-libpth-m2 --enable-multiarch --enable-multilib --disable-sjlj-exceptions --with-arch=armv7-a --with-fpu=vfpv3-d16 --with-float=hard --with-mode=thumb - -disable-werror --enable-multilib --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=arm-linux-gnueab ihf --program-prefix=arm-linux-gnueabihf---includedir=/usr/arm-linux-gnueabihf/include 线程模型:posix gcc 版本 9.3.0 (Ubuntu 9.3.0-10ubuntu1) alex@alex-u20:/usr/lib/x86_64-linux-gnu$ 字符串 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28 | grep GLIBCXX GLIBCXX_3.4 GLIBCXX_3.4.1 ... GLIBCXX_3.4.24 GLIBCXX_3.4.25 GLIBCXX_3.4.26 GLIBCXX_3.4.27 GLIBCXX_3.4.28

最后,这个程序使用 qemu 在桌面上运行:

alex@alex-u20:~/tmp/cpp_test/Debug$ qemu-arm-static -L /usr/arm-linux-gnueabihf/ cpp_test
cpp test

电脑,主机和BB板,全面更新。

【问题讨论】:

  • 建议您使用了错误的工具链?检查您的 GCC 版本...
  • @AsteroidsWithWings:答案已更新,见Additional information from the host
  • BeagleBone 上的 Ubuntu 版本是多少?
  • libstdc++.so.6.0.25 vs GLIBCXX_3.4.26?
  • @AsteroidsWithWings: Linux beaglebone 4.19.94-ti-r45 #1buster SMP PREEMPT Thu Jun 18 19:18:41 UTC 2020 armv7l GNU/Linux

标签: c++ linux cross-compiling embedded-linux beagleboneblack


【解决方案1】:

您可能没有 Debian 11 作为操作系统,3.4.26 不适用于 Debian 10。升级到 Debian 10 后,我可以正常运行程序。

【讨论】:

    【解决方案2】:

    GLIBCXX_3.4.26 附带gcc-8。安装 gcc-8 和升级 libstdc++6 对我有用。运行如下所示here:

    sudo apt update
    sudo apt install wget gcc-8 unzip libssl1.0.0 software-properties-common
    sudo add-apt-repository ppa:ubuntu-toolchain-r/test
    sudo apt update
    sudo apt-get install --only-upgrade libstdc++6
    

    【讨论】:

      【解决方案3】:

      不是真正的答案,但在我的 Ubuntu 20.04 系统上,我安装了包 libstdc++6,其中包含 libstdc++.so.6.0.28。

      寻找符号

      strings /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28 | grep GLIBCXX
      

      给予

      ...
      GLIBCXX_3.4.19
      GLIBCXX_3.4.20
      GLIBCXX_3.4.21
      GLIBCXX_3.4.22
      GLIBCXX_3.4.23
      GLIBCXX_3.4.24
      GLIBCXX_3.4.25
      GLIBCXX_3.4.26
      GLIBCXX_3.4.27
      GLIBCXX_3.4.28
      ...

      看来,版本 6.0.28 对应于符号 3.4.28。

      在您的情况下,您安装了 libstdc++.so.6.0.25,仅比 GLIBCXX_3.4.26 少一个。 因此,您必须升级 Beagle 板,或降级开发环境。


      当前(焦点,20.04)libstdc++6 版本是 6.0.28。 6.0.25 版本包含在仿生 (18.04) 中,其中还包含 gcc-8。

      所以,也许安装包 gcc-8/g++-8 及其依赖项(例如 libstdc++-8-dev)可以解决这个问题。

      【讨论】:

      • 谢谢,理由正确。我目前最简单的解决方案是切换到 Linaro 工具链。
      • @AlexF 另一种解决方案是使用 Ubuntu 18.04 或相应的 Debian 版本创建一个 docker 容器。
      最近更新 更多