You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting CMAKE_INSTALL_PREFIX to the CMAKE_BINARY_DIR causes a conflict that leads to the deletion of the binaries on recent CMAKE Versions, causing make vps to fail. (riscv-vp-plusplus/vp/build/bin/riscv-vp": No such file or directory, tested with CMake 3.31.5 on OpenSUSE Tumbleweed)
Workarounds:
Set a different folder as the CMAKE_INSTALL_PREFIX in vp/CMakeLists.txt
Use make DESTDIR=./dest vps to install vp binaries into different folder
The text was updated successfully, but these errors were encountered:
Setting CMAKE_INSTALL_PREFIX to the CMAKE_BINARY_DIR causes a conflict that leads to the deletion of the binaries on recent CMAKE Versions, causing
make vps
to fail. (riscv-vp-plusplus/vp/build/bin/riscv-vp": No such file or directory, tested with CMake 3.31.5 on OpenSUSE Tumbleweed)Workarounds:
make DESTDIR=./dest vps
to install vp binaries into different folderThe text was updated successfully, but these errors were encountered: