2

我想使用 riscv-gcc 在 Arty-A7 上实现 Ibex(RISCV 核心)示例,但我无法正确构建它。在“制作”阶段之后它一直在失败。它似乎与 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

我也尝试过运行 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 年 16 月 12 日更新]

按照建议,我尝试在 Ubuntu 18.04.03(最初我在 14.04)中构建工具链,它似乎已经很好地解决了这个问题!事实证明,当涉及到操作系统依赖项时,工具链确实是“脆弱的”。非常感谢你的帮忙!

4

3 回答 3

1

错误“不允许链接测试”与不完整的工具链(如 ld、binutils、libc)有关,类似于 https://gcc.gnu.org/ml/gcc-help/2012-07/msg00018.html 中的报告.

从您的问题中不清楚您使用哪条指令来构建 gcc。我认为你不应该只搜索 gcc 构建,而应该搜索完整的工具链指令,如https://github.com/riscv/riscv-gnu-toolchain或来自 Ibex 作者网站的东西。页面https://ibex-core.readthedocs.io/en/latest/verification.html#getting-started中的 Ibex 文档有一些指向“GCC 设置”的链接,但它用于验证并且没有完整的说明。

在问题https://github.com/riscv/riscv-gcc/issues/143中有“没有 binutils 就无法构建 gcc ”和“没有 C 库就无法构建有用的 gcc ”的信息。 ,所以尝试构建完整的工具链,而不仅仅是 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

于 2019-11-26T03:05:02.840 回答
0

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

我通过创建一个配置为使用 Ubuntu 16 的 Vagrantfile 解决了这个问题,并通过了官方步骤,至少对我来说,它构建的工具很好。如果您有兴趣,它会发布在我按照这些思路提出的 stackoverflow 问题中。如果您需要以不同方式配置工具,可以在 Vagrantfile 中轻松完成。

于 2019-12-02T22:06:00.050 回答
0

试试这个版本的整数 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   

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

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

vexrisc 完整项目在 arty a7 35t 上实现 riscv,包括工具链编译和使用 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

于 2021-10-17T17:01:52.613 回答