aboutsummaryrefslogtreecommitdiff
path: root/bolt/runtime
diff options
context:
space:
mode:
authorAmir Ayupov <aaupov@users.noreply.github.com>2022-05-12 18:29:41 +0100
committerAmir Ayupov <aaupov@users.noreply.github.com>2022-05-13 19:51:55 +0100
commitc1532ac4aae240be64ec7cb062ceef8504668dce (patch)
tree43f1cdcb9e179ce78e0e80e42b1b7c687efb708b /bolt/runtime
parent374d78999722a200ab0f05981f57daa7c8277e32 (diff)
downloadllvm-c1532ac4aae240be64ec7cb062ceef8504668dce.zip
llvm-c1532ac4aae240be64ec7cb062ceef8504668dce.tar.gz
llvm-c1532ac4aae240be64ec7cb062ceef8504668dce.tar.bz2
[BOLT][CMAKE] Add missing clauses to bolt/runtime/CMakeLists.txt
Fix build with Apple Clang. Tip @tschuett for reporting the issue #55404. Reviewed By: rafauler Differential Revision: https://reviews.llvm.org/D125480
Diffstat (limited to 'bolt/runtime')
-rw-r--r--bolt/runtime/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/bolt/runtime/CMakeLists.txt b/bolt/runtime/CMakeLists.txt
index 6423dc9..0ed11dd 100644
--- a/bolt/runtime/CMakeLists.txt
+++ b/bolt/runtime/CMakeLists.txt
@@ -1,6 +1,8 @@
+cmake_minimum_required(VERSION 3.13.4)
include(CheckIncludeFiles)
set(CMAKE_CXX_EXTENSIONS OFF)
+set(CMAKE_CXX_STANDARD 14)
project(libbolt_rt_project)