Closed KevinLikesDringCoffe closed 1 month ago
How did you install TAPA? Since your tapacc
is installed under /usr/local/bin/
, I think you might be installing from source and need to install Clang 17 manually (sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" 17 all
).
How did you install TAPA? Since your
tapacc
is installed under/usr/local/bin/
, I think you might be installing from source and need to install Clang 17 manually (sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" 17 all
).
I installed TAPA from source since my system is 18.04 and already installed Clang 17
OK I was able to reproduce this problem after installing from source. The problem is indeed with Clang 17 installation; sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" 17 all
is actually installing Clang 18 instead of Clang 17 now☹️.
@KevinLikesDringCoffe Could you try if sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" bash 17 all
fixes the issue?
The most current TAPA version should have resolved this issue. Please try to install it and see if the problem persists. Note that the tapac
interface has been replaced with tapa compile
. Most options remain the same. Please refer to the documentation for details.
I am closing this issue now. Please feel free to reopen if the problem still exists in the new versions.
After installing tapa I tried to build vadd by
source run_tapa.sh
But I encounter these errorsHow can I solve it?