我想在我的 64 位 16.04 上构建一个 32 位的 C++ 程序。
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/5/libstdc++.so when searching for -lstdc++
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/5/libstdc++.a when searching for -lstdc++
/usr/bin/ld: cannot find -lstdc++
collect2: error: ld returned 1 exit status
使用 g++ 链接失败,搜索 -lstdc++说我应该安装libc6-i386 libc6-dev-i386 lib32gcc1 lib32stdc++6
,它给出:
Reading package lists... Done
Building dependency tree
Reading state information... Done
lib32gcc1 is already the newest version (1:6.0.1-0ubuntu1).
lib32gcc1 set to manually installed.
libc6-dev-i386 is already the newest version (2.23-0ubuntu3).
libc6-dev-i386 set to manually installed.
libc6-i386 is already the newest version (2.23-0ubuntu3).
lib32stdc++6 is already the newest version (5.3.1-14ubuntu2.1).
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
好的,好的,现在让我们尝试接受的答案:安装g++-multilib
(或者gcc-multilib
,结果相同):
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
binutils-arm-linux-gnueabi cpp-5-arm-linux-gnueabi cpp-arm-linux-gnueabi gcc-5-arm-linux-gnueabi-base
gcc-5-cross-base libasan2-armel-cross libasan2-dbg-armel-cross libatomic1-armel-cross libatomic1-dbg-armel-cross
libc6-armel-cross libc6-armhf-armel-cross libc6-armhf-cross libc6-dev-armel-cross libc6-dev-armhf-armel-cross
libc6-dev-armhf-cross libgcc-5-dev-armel-cross libgcc1-armel-cross libgcc1-dbg-armel-cross libgomp1-armel-cross
libgomp1-dbg-armel-cross libhfasan2-armel-cross libhfatomic1-armel-cross libhfgcc-5-dev-armel-cross
libhfgcc1-armel-cross libhfgomp1-armel-cross libhfstdc++6-armel-cross libhfubsan0-armel-cross libstdc++6-armel-cross
libubsan0-armel-cross libubsan0-dbg-armel-cross linux-libc-dev-armel-cross linux-libc-dev-armhf-cross
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
g++-5-multilib gcc-multilib lib32gcc1-dbg lib32stdc++-5-dev lib32stdc++6-5-dbg libx32gcc1-dbg libx32stdc++-5-dev
libx32stdc++6-5-dbg
The following packages will be REMOVED:
gcc-5-arm-linux-gnueabi gcc-5-multilib-arm-linux-gnueabi gcc-arm-linux-gnueabi
The following NEW packages will be installed:
g++-5-multilib g++-multilib gcc-multilib lib32gcc1-dbg lib32stdc++-5-dev lib32stdc++6-5-dbg libx32gcc1-dbg
libx32stdc++-5-dev libx32stdc++6-5-dbg
0 upgraded, 9 newly installed, 3 to remove and 1 not upgraded.
Need to get 14.7 MB of archives.
After this operation, 82.5 MB of additional disk space will be used.
我喜欢能够在我的笔记本电脑上构建 GNU C11 并让它在我的手机上运行(见这里),这是可能的arm-linux-gnueabi-gcc
,所以我不想摆脱它。(我对 C++11 做同样的事情不感兴趣)。
将要安装的新软件包gcc-multilib
似乎仅限 C++,但它会删除 C 编译器以及binutils
我想保留的 ARM 和其他平台。
我可以同时拥有 32 位 GNU C++11 和 ARM GNU C11 的编译器吗?
其他架构编译器的包安装将它们放入系统区域。可执行文件的名称是唯一的,但是包太“有用”了,并且认为您确实需要一个短名称链接(如 gcc)来指向它们,哇,另一个包已经使用了该链接,必须为您删除它。这在专用于一种工具链的虚拟机中可能很好,但在正常情况下是不可取的。
您可以自己解压缩包,如果需要,可以将可执行文件复制到 /usr/bin 中。如果多个用户正在使用编译器,那将是这样做的方法,但作为单个用户,我从不打扰。我只是在我自己的目录中本地解压缩,并根据需要设置环境变量和本地链接。缺点是在发布时没有获得软件包更新。好处是选择何时更改编译器版本,针对旧版本测试新安装,当您确认新软件包满足您的需求时,您可以切换。您不能通过将新版本放入标准系统区域来做到这一点,因为新版本名称与旧版本名称没有区别。
本地工具链设置脚本示例:
可执行文件位于 ${COMPILER_PATH} 中,名称类似于
arm-none-linux-gnueabi-gcc,因此您可以使用短名称添加指向该目录的链接:
只是为了方便您,大多数 makefile 都会像上面显示的那样运行定义,并且在那里可以很容易地使用全名而不是短名。
为每个架构都有一个设置脚本,您可以为一个架构中不同版本的编译器设置一个脚本。