Skip to content
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
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
url = https://github.com/agauniyal/rang.git
[submodule "3rdparty/libbacktrace"]
path = ffi/3rdparty/libbacktrace
url = https://github.com/tlc-pack/libbacktrace.git
url = https://github.com/ianlancetaylor/libbacktrace
[submodule "3rdparty/cutlass"]
path = 3rdparty/cutlass
url = https://github.com/NVIDIA/cutlass.git
Expand Down
2 changes: 1 addition & 1 deletion ffi/3rdparty/libbacktrace
Submodule libbacktrace updated 58 files
+155 −31 Makefile.am
+438 −157 Makefile.in
+11 −1 README.md
+1 −1 alloc.c
+1 −1 allocfail.c
+1 −1 allocfail.sh
+2 −2 atomic.c
+1 −1 backtrace-supported.h.in
+1 −1 backtrace.c
+1 −1 backtrace.h
+24 −8 btest.c
+418 −194 config.guess
+16 −0 config.h.in
+878 −801 config.sub
+183 −82 config/libtool.m4
+4 −3 config/override.m4
+497 −105 configure
+86 −16 configure.ac
+303 −99 dwarf.c
+2 −2 edtest.c
+1 −1 edtest2.c
+2,823 −271 elf.c
+103 −8 fileline.c
+2 −2 install-debuginfo-for-buildid.sh.in
+174 −200 install-sh
+1 −1 instrumented_alloc.c
+50 −2 internal.h
+0 −7,444 libtool.m4
+2 −2 ltmain.sh
+0 −369 ltoptions.m4
+0 −123 ltsugar.m4
+0 −23 ltversion.m4
+0 −98 lt~obsolete.m4
+27 −21 macho.c
+149 −265 missing
+1 −1 mmap.c
+1 −1 mmapio.c
+0 −0 move-if-change
+4 −4 mtest.c
+1 −1 nounwind.c
+208 −20 pecoff.c
+1 −1 posix.c
+41 −16 print.c
+1 −1 read.c
+1 −1 simple.c
+1 −1 sort.c
+1 −1 state.c
+1 −1 stest.c
+1 −1 test_format.c
+1 −1 testlib.c
+1 −1 testlib.h
+1 −1 ttest.c
+1 −1 unittest.c
+1 −1 unknown.c
+43 −32 xcoff.c
+2 −2 xztest.c
+523 −0 zstdtest.c
+1 −1 ztest.c
2 changes: 0 additions & 2 deletions ffi/cmake/Utils/AddLibbacktrace.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ function(_libbacktrace_compile)

ExternalProject_Add(project_libbacktrace
PREFIX libbacktrace
GIT_REPOSITORY "https://github.com/ianlancetaylor/libbacktrace.git"
GIT_TAG "793921876c981ce49759114d7bb89bb89b2d3a2d"
SOURCE_DIR ${_libbacktrace_source}
BINARY_DIR ${_libbacktrace_prefix}
CONFIGURE_COMMAND
Expand Down
Loading