riscv-gcc 构建失败 [GCC_NO_EXECUTABLES]

riscv-gcc Fails to build [GCC_NO_EXECUTABLES]

我想使用 riscv-gcc 在 Arty-A7 上实现一个 Ibex(RISCV 核心)示例,但我无法正确构建它。 它在 'make' 阶段后一直失败。它似乎与 zlib 有关,但我不太确定,因为这是我第一次从源代码构建任何东西。我从 https://github.com/riscv/riscv-gcc

获得了来源

我已经配置它执行 make as

../riscv-gcc/configure --enable-multilib
make

然后退出并出现以下错误

checking whether the gcc  -m32 linker (ld -m elf_x86_64 -m elf_i386) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... configure: error: Link tests are not allowed after GCC_NO_EXECUTABLES.
make[2]: *** [configure-stage1-zlib] Error 1
make[2]: Leaving directory `/home/alfred/Desktop/Work/riscv_gcc_install'
make[1]: *** [stage1-bubble] Error 2
make[1]: Leaving directory `/home/alfred/Desktop/Work/riscv_gcc_install'
make: *** [all] Error 2

我也尝试过 运行ning make(相同的配置)与

make all-gcc

但它却产生了这个错误

checking if gcc  -m32 supports -fno-rtti -fno-exceptions... no
checking for gcc  -m32 option to produce PIC... -fPIC -DPIC
checking if gcc  -m32 PIC flag -fPIC -DPIC works... yes
checking if gcc  -m32 static flag -static works... no
checking if gcc  -m32 supports -c -o file.o... yes
checking if gcc  -m32 supports -c -o file.o... (cached) yes
checking whether the gcc  -m32 linker (ld -m elf_x86_64 -m elf_i386) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... configure: error: Link tests are not allowed after GCC_NO_EXECUTABLES.
make: *** [configure-zlib] Error 1

除了按照 https://gcc.gnu.org/install/prerequisites.html 的建议检查先决条件库之外,我不确定到目前为止还能做什么。谁能帮帮我?

[更新 27/11/19]

我尝试从 < https://github.com/riscv/riscv-gnu-toolchain> 安装完整的 riscv-gnu-toolchain 以避免丢失依赖项,但我仍然遇到错误。我执行了 运行 建议的 apt-get 命令来安装先决条件。

我运行 配置建议以 riscv32 为目标并按如下方式进行 make

./configure --prefix=/opt/riscv --with-arch=rv32gc --with-abi=ilp32d
make linux

然后我得到了这个错误

make[3]: Entering directory `/home/alfred/Desktop/Work/riscv-gnu-toolchain/build-binutils-linux/binutils'
/bin/bash /home/alfred/Desktop/Work/riscv-gnu-toolchain/riscv-binutils/binutils/../ylwrap /home/alfred/Desktop/Work/riscv-gnu-toolchain/riscv-binutils/binutils/arparse.y y.tab.c arparse.c y.tab.h `echo arparse.c | sed -e s/cc$/hh/ -e s/cpp$/hpp/ -e s/cxx$/hxx/ -e s/c++$/h++/ -e s/c$/h/` y.output arparse.output -- bison -y  -d
m4: unrecognized option '--gnu'
Try `m4 --help' for more information.
make[4]: Entering directory `/home/alfred/Desktop/Work/riscv-gnu-toolchain/build-binutils-linux/binutils'
/bin/bash /home/alfred/Desktop/Work/riscv-gnu-toolchain/riscv-binutils/binutils/../ylwrap /home/alfred/Desktop/Work/riscv-gnu-toolchain/riscv-binutils/binutils/arparse.y y.tab.c arparse.c y.tab.h `echo arparse.c | sed -e s/cc$/hh/ -e s/cpp$/hpp/ -e s/cxx$/hxx/ -e s/c++$/h++/ -e s/c$/h/` y.output arparse.output -- bison -y  -d
m4: unrecognized option '--gnu'
Try `m4 --help' for more information.
make[4]: Leaving directory `/home/alfred/Desktop/Work/riscv-gnu-toolchain/build-binutils-linux/binutils'
/bin/bash /home/alfred/Desktop/Work/riscv-gnu-toolchain/riscv-binutils/binutils/../ylwrap /home/alfred/Desktop/Work/riscv-gnu-toolchain/riscv-binutils/binutils/sysinfo.y y.tab.c sysinfo.c y.tab.h `echo sysinfo.c | sed -e s/cc$/hh/ -e s/cpp$/hpp/ -e s/cxx$/hxx/ -e s/c++$/h++/ -e s/c$/h/` y.output sysinfo.output -- bison -y  -d
/home/alfred/Desktop/Work/riscv-gnu-toolchain/riscv-binutils/binutils/sysinfo.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
m4: unrecognized option '--gnu'
Try `m4 --help' for more information.
if [ -r sysinfo.c ]; then \
      gcc -c -I. -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -I/home/alfred/Desktop/Work/riscv-gnu-toolchain/riscv-binutils/binutils/../zlib -g -O2  sysinfo.c ; \
    else \
      gcc -c -I. -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -I/home/alfred/Desktop/Work/riscv-gnu-toolchain/riscv-binutils/binutils/../zlib -g -O2  /home/alfred/Desktop/Work/riscv-gnu-toolchain/riscv-binutils/binutils/sysinfo.c ; \
    fi
gcc: error: /home/alfred/Desktop/Work/riscv-gnu-toolchain/riscv-binutils/binutils/sysinfo.c: No such file or directory
gcc: fatal error: no input files
compilation terminated.
make[3]: *** [sysinfo.o] Error 4
make[3]: Leaving directory `/home/alfred/Desktop/Work/riscv-gnu-toolchain/build-binutils-linux/binutils'
make[2]: *** [all-binutils] Error 2
make[2]: Leaving directory `/home/alfred/Desktop/Work/riscv-gnu-toolchain/build-binutils-linux'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/alfred/Desktop/Work/riscv-gnu-toolchain/build-binutils-linux'
make: *** [stamps/build-binutils-linux] Error 2

我注意到 m4 无法识别某个参数

--gnu

我应该关心这个吗?

[2019 年 12 月 16 日更新]

按照推荐,我尝试在Ubuntu 18.04.03(我原来是14.04)构建工具链,似乎很好地解决了问题!事实证明,当涉及 OS 依赖项时,工具链确实是 "fragile"。非常感谢您的帮助!

错误 "Link tests are not allowed" 与不完整的工具链(如 ld、binutils、libc)有关,类似于 https://gcc.gnu.org/ml/gcc-help/2012-07/msg00018.[=34= 中的报告].

从您的问题中不清楚您使用了哪条指令来构建 gcc。我认为您不应该只搜索 gcc 构建,而应该搜索完整的工具链说明,例如 https://github.com/riscv/riscv-gnu-toolchain 或来自 Ibex 作者网站的内容。 https://ibex-core.readthedocs.io/en/latest/verification.html#getting-started 页的 Ibex 文档有一些 link 到 "GCC setup",但它只是为了验证,没有完整的说明。

在问题 https://github.com/riscv/riscv-gcc/issues/143 中有信息“没有 binutils 你不能构建 gcc。”和“你不能构建一个有用的 gcc 没有 C 库。",所以尝试构建完整的工具链,而不仅仅是 gcc。

在 lowrisc 的早期项目中,有构建工具链的指令(结合 gcc + binutils + newlib):https://www.lowrisc.org/blog/2017/09/building-upstream-risc-v-gccbinutilsnewlib-the-quick-and-dirty-way/ - 你可能想用另一个 git (riscv-gcc) 修改指令。或者试试 https://github.com/riscv/riscv-gnu-toolchain

我发现 RISC-V 工具链在 OS 依赖方面非常脆弱。工具链团队使用 Ubuntu 16,人们看到的许多错误都源于自该版本以来 Linux 生态系统的变化。

我通过创建一个配置为使用 Ubuntu 16 的 Vagrantfile 解决了这个问题,并完成了官方步骤,至少对我来说,它构建的工具很好。如果您有兴趣,它已发布在 内。如果您需要以不同方式配置工具,可以直接在 Vagrantfile 中进行。

试试这个版本的整数 riscv。我已经试过了,通过了。

git clone https://github.com/riscv/riscv-gnu-toolchain  
git checkout 411d134  
git submodule update --init --recursive  
mkdir build  
cd build  
../configure --prefix=/opt/riscv32i --with-arch=rv32i --with-abi=ilp32  
make -j8  

如果你的riscv有mul/div模块,添加M标准扩展。

../configure --prefix=/opt/riscv32im --with-arch=rv32im --with-abi=ilp32

如果你的riscv是64位整数核:

../configure --prefix=/opt/riscv64i --with-arch=riscv64i --with-abi=lp64   

select 您要构建的选项:
整数乘法和除法的“M”标准扩展
原子指令的“A”标准扩展
单精度浮点数的“F”标准扩展
双精度浮点数的“D”标准扩展
四精度浮点数的“Q”标准扩展
压缩指令的“C”标准扩展
I、M、A、F、D 的“G”组合

ilp32/ilp32f/ilp32d int-32bits long-32bits pointer-32bits
lp64/lp64f/lp64d int-32bits long-64bits pointer-64bits

在 arty a7 35t 上实现 riscv 的 vexrisc 完整项目,包括工具链编译和使用 IntelliJ IDE 构建 riscv 项目和内部 USB jtag 调试可能对您有所帮助。

https://fatalfeel.blogspot.com/2013/12/risc-v-on-arty-a7-35t.html

也许您想在 riscv 上尝试 Linux。它基于 vexrisc

https://github.com/SpinalHDL/SaxonSoc