This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository openmp.
from 3585ec7 Use C++11 static_assert() for build asserts. new 7680cbb [OpenMP] Initial implementation of OpenMP offloading library [...]
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 | 1 + libomptarget/Build_With_CMake.txt | 142 ++ libomptarget/CMakeLists.txt | 115 + libomptarget/README.txt | 72 + .../Modules/LibomptargetGetDependencies.cmake | 124 ++ libomptarget/cmake/Modules/LibomptargetUtils.cmake | 28 + libomptarget/cmake/Modules/config-ix.cmake | 17 + libomptarget/exports | 28 + libomptarget/src/omptarget.cpp | 2323 ++++++++++++++++++++ libomptarget/src/omptarget.h | 234 ++ libomptarget/test/CMakeLists.txt | 93 + libomptarget/test/lit.cfg | 116 + libomptarget/test/lit.site.cfg.in | 20 + libomptarget/test/offloading/offloading_success.c | 22 + .../test/offloading/offloading_success.cpp | 22 + 15 files changed, 3357 insertions(+) create mode 100644 libomptarget/Build_With_CMake.txt create mode 100644 libomptarget/CMakeLists.txt create mode 100644 libomptarget/README.txt create mode 100644 libomptarget/cmake/Modules/LibomptargetGetDependencies.cmake create mode 100644 libomptarget/cmake/Modules/LibomptargetUtils.cmake create mode 100644 libomptarget/cmake/Modules/config-ix.cmake create mode 100644 libomptarget/exports create mode 100644 libomptarget/src/omptarget.cpp create mode 100644 libomptarget/src/omptarget.h create mode 100644 libomptarget/test/CMakeLists.txt create mode 100644 libomptarget/test/lit.cfg create mode 100644 libomptarget/test/lit.site.cfg.in create mode 100644 libomptarget/test/offloading/offloading_success.c create mode 100644 libomptarget/test/offloading/offloading_success.cpp