1From 5ccaff351297bca0e254bbfd66e3f03fef9d9c75 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 10 Jan 2020 21:54:39 -0800
4Subject: [PATCH] Correct clang compiler flags
5
6Fix misplaced quotes, this was leading to spurious ; in compiler cmdline
7Remove demanding libc++, clang can link with both libc++ and libstdc++
8and platforms have their own defaults, user can demand non defaults via
9adding it to cmake flags
10
11Upstream-Status: Submitted [https://github.com/zaphoyd/websocketpp/pull/859]
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13---
14 CMakeLists.txt | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/CMakeLists.txt b/CMakeLists.txt
18index 2d13117..c17354a 100644
19--- a/CMakeLists.txt
20+++ b/CMakeLists.txt
21@@ -154,7 +154,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES)
22         endif()
23         set (WEBSOCKETPP_PLATFORM_TLS_LIBS ssl crypto)
24         set (WEBSOCKETPP_BOOST_LIBS system thread)
25-        set (CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-std=c++0x -stdlib=libc++") # todo: is libc++ really needed here?
26+        set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
27         if (NOT APPLE)
28             add_definitions (-DNDEBUG -Wall -Wno-padded) # todo: should we use CMAKE_C_FLAGS for these?
29         endif ()
30--
312.24.1
32
33