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
Hi, I'm new to this project, and I have some troubles when compiling aie.cpp. Could you kindly tell me a tutorial or how to configure the relevant environment about aie especially the header and libraries path?
The text was updated successfully, but these errors were encountered:
Hi and welcome!
Which aie.cpp are you referring to exactly? Are you trying to build LLVM? You need to configure the build using cmake, and then use ninja/make to build. Some minimal cmake configuration could look like:
mkdir build;
cd build;
cmake -G Ninja -C ../clang/cmake/caches/Peano-AIE.cmake ../llvm
You can then build clang using ninja clang.
I hope this helps!
Hi and welcome! Which aie.cpp are you referring to exactly? Are you trying to build LLVM? You need to configure the build using cmake, and then use ninja/make to build. Some minimal cmake configuration could look like:
mkdir build;
cd build;
cmake -G Ninja -C ../clang/cmake/caches/Peano-AIE.cmake ../llvm
You can then build clang using ninja clang. I hope this helps!
I have successfully built the project. However, I don't know how to correctly compile the cpp file, since I'm confused about the including path to support AIE Intrinsic API. It should use the environment of Vitis? Could you kindly tell me how to configure the include and library environment? Thanks.
Hi, I'm new to this project, and I have some troubles when compiling aie.cpp. Could you kindly tell me a tutorial or how to configure the relevant environment about aie especially the header and libraries path?
The text was updated successfully, but these errors were encountered: