summaryrefslogtreecommitdiff
path: root/libcxx/benchmarks
diff options
context:
space:
mode:
authorLouis Dionne <ldionne.2@gmail.com>2022-05-13 12:15:15 -0400
committerLouis Dionne <ldionne.2@gmail.com>2022-05-13 14:37:24 -0400
commit0a22dfcb11c05cbd4f654c8ef1868a4bc6085140 (patch)
tree5328feacb0d2c66b9d66786417889a44909a8778 /libcxx/benchmarks
parent345ed58ed513ab34640af7f174f27834acd958c1 (diff)
downloadllvm-0a22dfcb11c05cbd4f654c8ef1868a4bc6085140.tar.gz
[runtimes][NFC] Remove dead code for Standalone builds
Standalone builds have been deprecated and then removed for a while now. Trying to use standalone builds leads to a fatal CMake error, so this code is all dead. Remove it to clean things up. Differential Revision: https://reviews.llvm.org/D125561
Diffstat (limited to 'libcxx/benchmarks')
-rw-r--r--libcxx/benchmarks/CMakeLists.txt6
1 files changed, 0 insertions, 6 deletions
diff --git a/libcxx/benchmarks/CMakeLists.txt b/libcxx/benchmarks/CMakeLists.txt
index 95e28618b55e..e5f96aa88bd1 100644
--- a/libcxx/benchmarks/CMakeLists.txt
+++ b/libcxx/benchmarks/CMakeLists.txt
@@ -3,12 +3,6 @@ if (CMAKE_VERSION VERSION_LESS 3.17)
return()
endif()
-if (LIBCXX_STANDALONE_BUILD)
- message(WARNING "The libc++ benchmarks are not available in a standalone build. Please migrate to an official build "
- "as documented in https://libcxx.llvm.org/BuildingLibcxx.html.")
- return()
-endif()
-
include(ExternalProject)
include(CheckCXXCompilerFlag)