RISC-V-On-PYNQ
RISC-V-On-PYNQ copied to clipboard
Issue on Notebook 3-Compiling-RISC-V-GCC-Toolchain -
Hi,
When I run the configuration part, I don't get any error and I get the configuration successful message. Now the problem is when running the compilation part.
`build_log = open("build.log","w")
build_err = open("build.err","w")
ret = run(["make"],
cwd="/home/xilinx/riscv-gnu-toolchain/",
stdout=build_log, stderr=build_err)
build_log.close()
build_err.close()
if(ret.returncode != 0): print("There was an error while compiling the RISCV Toolchain. See the build.err and build.log file") else: print("Compile successful!")`
The error log that appears is the following: "Makefile:623: recipe for target 'stamps/build-gcc-newlib-stage1' failed". I am attaching the two log files. Is there any solution for this problem ?
Thanks in advance