[PATCH] D125480: [BOLT][CMAKE] Add missing clauses to bolt/runtime/CMakeLists.txt
Amir Ayupov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 12 10:40:04 PDT 2022
Amir created this revision.
Herald added subscribers: ayermolo, mgorny.
Herald added a reviewer: rafauler.
Herald added a reviewer: maksfb.
Herald added a project: All.
Amir requested review of this revision.
Herald added subscribers: llvm-commits, yota9.
Herald added a project: LLVM.
Fix build with Apple Clang.
Tip @tschuett for reporting the issue #55404.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D125480
Files:
bolt/runtime/CMakeLists.txt
Index: bolt/runtime/CMakeLists.txt
===================================================================
--- bolt/runtime/CMakeLists.txt
+++ 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)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D125480.429002.patch
Type: text/x-patch
Size: 345 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220512/80ee8f7b/attachment.bin>
More information about the llvm-commits
mailing list