Error building pulp sdk - Printable Version +- PULP Community (https://pulp-platform.org/community) +-- Forum: PULP's Community forum (https://pulp-platform.org/community/forumdisplay.php?fid=1) +--- Forum: PULP General questions (https://pulp-platform.org/community/forumdisplay.php?fid=2) +--- Thread: Error building pulp sdk (/showthread.php?tid=318) |
Error building pulp sdk - costola - 05-18-2023 I am stacked in installing the pulp-sdk. First of all I have succesfully installed the pulp-rsicv-gnu-toolchain following the instruction on github https://github.com/pulp-platform/pulp-riscv-gnu-toolchain . I performed the following step (I omit the part in which I install all the dependencies) : 1. $ git clone --recursive https://github.com/pulp-platform/pulp-riscv-gnu-toolchain 2. $ cd pulp-riscv-gnu-toolchain 3. $ export PATH=/opt/riscv/bin:$PATH 4. $ ./configure --prefix=/opt/riscv --with-arch=rv32imc --with-cmodel=medlow -- enable-multilib 5. $ make Then I followed the instruction on github for what concern pulp-sdk https://github.com/pulp-platform/pulp-sdk . I performed the following step (I omit the part in which I install all the dependencies) : 1. $ git clone https://github.com/pulp-platform/pulp-sdk 2. $ export PULP_RISCV_GCC_TOOLCHAIN=/opt/riscv 3. $ cd pulp-sdk 4. $ source configs/pulp-open.sh 5. $ make build At step n°5 i have the following error: Quote:cmake -S . -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo \ How can i solve ? It seems the build folder is missing. I also checked this step by step installation guide https://www.pulp-platform.org/docs/pulp_training/NBruschi_gvsoc_tutorial_part1.pdf |