summaryrefslogtreecommitdiffstats
path: root/libcxx/utils/google-benchmark/cmake
Commit message (Collapse)AuthorAgeFilesLines
* [libc++][NFC] Remove excess trailing newlines from most filesCasey Carter2019-10-233-3/+0
| | | | Testing git commit access.
* Upgrade Google Benchmark library to ToTEric Fiselier2018-11-153-10/+10
| | | | llvm-svn: 346984
* Update google-benchark to trunkEric Fiselier2018-07-105-39/+91
| | | | llvm-svn: 336635
* Update Google Benchmark libraryEric Fiselier2018-01-185-7/+123
| | | | llvm-svn: 322812
* Update google benchmarkEric Fiselier2017-04-183-5/+33
| | | | llvm-svn: 300530
* Upgrade in-tree google benchmark to v1.1Eric Fiselier2016-11-051-1/+1
| | | | llvm-svn: 286029
* Update Google Benchmark library.Eric Fiselier2016-08-291-1/+3
| | | | llvm-svn: 279989
* [libcxx] Add support for benchmark tests using Google Benchmark.Eric Fiselier2016-07-198-0/+177
Summary: This patch does the following: 1. Checks in a copy of the Google Benchmark library into the libc++ repo under `utils/google-benchmark`. 2. Teaches libc++ how to build Google Benchmark against both (A) in-tree libc++ and (B) the platforms native STL. 3. Allows performance benchmarks to be built as part of the libc++ build. Building the benchmarks (and Google Benchmark) is off by default. It must be enabled using the CMake option `-DLIBCXX_INCLUDE_BENCHMARKS=ON`. When this option is enabled the tests under `libcxx/benchmarks` can be built using the `libcxx-benchmarks` target. On Linux platforms where libstdc++ is the default STL the CMake option `-DLIBCXX_BUILD_BENCHMARKS_NATIVE_STDLIB=ON` can be used to build each benchmark test against libstdc++ as well. This is useful for comparing performance between standard libraries. Support for benchmarks is currently very minimal. They must be manually run by the user and there is no mechanism for detecting performance regressions. Known Issues: * `-DLIBCXX_INCLUDE_BENCHMARKS=ON` is only supported for Clang, and not GCC, since the `-stdlib=libc++` option is needed to build Google Benchmark. Reviewers: danalbert, dberlin, chandlerc, mclow.lists, jroelofs Subscribers: chandlerc, dberlin, tberghammer, danalbert, srhines, hfinkel Differential Revision: https://reviews.llvm.org/D22240 llvm-svn: 276049
OpenPOWER on IntegriCloud