summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/Support/DynamicLibrary/ExportedFuncs.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Rename three cxx files in unittests to cpp.Nico Weber2018-05-151-16/+0
| | | | | | | | | | | | LLVM uses cpp as its C++ file extension, these are the only three cxx file in the monorepo. These files apparently were called to escape a CMake check -- use the LLVM_OPTIONAL_SOURCES mechanism that's meant as an escape for this case instead. No intended behavior change. https://reviews.llvm.org/D46843 llvm-svn: 332368
* Export the required symbol from DynamicLibraryTestsRoger Ferrer Ibanez2017-06-121-0/+16
Running unittests/Support/DynamicLibrary/DynamicLibraryTests fails when LLVM is configured with -DLLVM_EXPORT_SYMBOLS_FOR_PLUGINS=ON, because the test's version script only contains symbols extracted from the static libraries, that the test links with, but not those from the main object/executable itself. The patch moves the one symbol, needed by the test, to a static library. Fixes https://bugs.llvm.org/show_bug.cgi?id=32893 Patch by Momchil Velikov. Differential Revision: https://reviews.llvm.org/D33789 llvm-svn: 305181
OpenPOWER on IntegriCloud