Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update aiebu to use main-ge branch #8742

Merged
merged 1 commit into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
[submodule "src/runtime_src/core/common/aiebu"]
path = src/runtime_src/core/common/aiebu
url = https://github.com/Xilinx/aiebu.git
branch = main-ge
[submodule "src/runtime_src/aie-rt"]
path = src/runtime_src/aie-rt
url = https://github.com/Xilinx/aie-rt.git
Expand Down
2 changes: 2 additions & 0 deletions src/runtime_src/core/common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ add_subdirectory(runner)
if(CMAKE_VERSION VERSION_LESS "3.18.0")
message(WARNING "CMake version is less than 3.18.0, build of submodule aiebu disabled")
elseif (${XRT_NATIVE_BUILD} STREQUAL "yes")
set(AIEBU_FULL OFF)
set(AIEBU_SUBMODULE ON)
xrt_add_subdirectory(aiebu)
else()
message(WARNING "Edge device, build of submodule aiebu disabled")
Expand Down
2 changes: 1 addition & 1 deletion src/runtime_src/core/common/aiebu
Submodule aiebu updated 211 files
2 changes: 1 addition & 1 deletion src/runtime_src/core/common/elf
Submodule elf updated 42 files
+85 −18 .github/workflows/c-cpp.yml
+2 −2 CMakeLists.txt
+3 −3 README.md
+ doc/elfio.docx
+ doc/elfio.pdf
+ doc/images/res/20231119165006-100.png
+ doc/images/res/title.png
+ doc/images/res2/20231119095119.jpg
+ doc/images/res2/20231119095351.jpg
+ doc/images/res2/20231119095425.jpg
+ doc/images/res2/20231119095558.jpg
+ doc/images/res2/20231119095613.jpg
+ doc/images/res2/20231119095721.jpg
+ doc/images/res2/20231119095920.jpg
+ doc/images/res2/20231119095932.jpg
+ doc/images/res2/20231119095944.jpg
+ doc/images/res2/20231119100133.jpg
+ doc/images/res2/20231119100142.jpg
+ doc/images/res2/20231119165006-1.jpg
+ doc/images/res2/20231119165006-256.png
+ doc/images/res2/20231119165006.jpg
+ doc/images/res2/20231119165016.jpg
+ doc/images/res2/20231119165024.jpg
+ doc/images/res2/20231119165842.jpg
+ doc/images/res2/20231119165851.jpg
+ doc/images/res2/20231119165907.jpg
+ doc/images/res2/20231119165912.jpg
+5 −5 elfio/elf_types.hpp
+2 −2 elfio/elfio.hpp
+1 −1 elfio/elfio_modinfo.hpp
+17 −8 elfio/elfio_relocation.hpp
+17 −6 elfio/elfio_section.hpp
+16 −4 elfio/elfio_segment.hpp
+2 −2 elfio/elfio_strings.hpp
+3 −0 elfio/elfio_symbols.hpp
+8 −0 elfio/elfio_utils.hpp
+1 −1 elfio/elfio_version.hpp
+1 −1 examples/write_obj/write_obj.cpp
+2 −2 tests/CMakeLists.txt
+64 −1 tests/ELFIOTest.cpp
+ tests/elf_examples/ls
+0 −462 tests/elf_examples/ls.readelf
Loading