This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository compiler-rt.
from 8d158e4bf [scudo][standalone] Add the memory reclaiming mechanism new 2ac8e2003 [compiler-rt] Simple crtbegin.o and crtend.o implementation
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: CMakeLists.txt | 2 + cmake/Modules/AddCompilerRT.cmake | 52 ++++++++++++++------- cmake/config-ix.cmake | 8 ++++ lib/CMakeLists.txt | 4 ++ lib/crt/CMakeLists.txt | 90 ++++++++++++++++++++++++++++++++++++ lib/crt/crtbegin.c | 97 +++++++++++++++++++++++++++++++++++++++ lib/crt/crtend.c | 22 +++++++++ test/CMakeLists.txt | 3 ++ test/crt/CMakeLists.txt | 34 ++++++++++++++ test/crt/dso_handle.cpp | 33 +++++++++++++ test/crt/lit.cfg | 78 +++++++++++++++++++++++++++++++ test/crt/lit.site.cfg.in | 14 ++++++ 12 files changed, 420 insertions(+), 17 deletions(-) create mode 100644 lib/crt/CMakeLists.txt create mode 100644 lib/crt/crtbegin.c create mode 100644 lib/crt/crtend.c create mode 100644 test/crt/CMakeLists.txt create mode 100644 test/crt/dso_handle.cpp create mode 100644 test/crt/lit.cfg create mode 100644 test/crt/lit.site.cfg.in