aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dma-noop.c
AgeCommit message (Expand)Author
2017-01-24lib/dma-noop: Clarify a commentBart Van Assche
2017-01-24treewide: Constify most dma_map_ops structuresBart Van Assche
2016-08-04dma-mapping: use unsigned long for dma_attrsKrzysztof Kozlowski
2016-03-02dma: Provide simple noop dma opsChristian Borntraeger
2-29_01-19-37_master-next_aws-iot-securetunneling-localproxy Layer containing Amazon Web Services (AWS) device software support metadataGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-iot/aws-iot-securetunneling-localproxy/files/remove-cxx-standard.patch
blob: a9cff1421639518d097cb56d47dca47f40b489fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
From 948a70c5e33f5afc8c5eeda97457ae5e164b5bbc Mon Sep 17 00:00:00 2001
From: Thomas Roos <throos@amazon.de>
Date: Tue, 9 Jan 2024 14:34:32 +0000
Subject: [PATCH] aws-iot-securetunneling-localproxy: remove setting of

---
 CMakeLists.txt | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 34c897a..972e5a8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 3.2 FATAL_ERROR)
-
 set(AWS_TUNNEL_LOCAL_PROXY_TARGET_NAME localproxy)
 set(AWS_TUNNEL_LOCAL_PROXY_LIB_NAME lproxy)
 project(${AWS_TUNNEL_LOCAL_PROXY_TARGET_NAME} CXX)
@@ -21,9 +19,7 @@ endif ()
 ########################################
 # Section : Common Build setttings #
 ########################################
-# Set required compiler standard to standard c++11. Disable extensions.
-set(CMAKE_CXX_STANDARD 14) # C++14
-set(CMAKE_CXX_STANDARD_REQUIRED ON) #...is required...
+# Disable extensions.
 set(CMAKE_CXX_EXTENSIONS OFF) #...without compiler extensions like gnu++11
 
 set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)