update patch for issue 39 build error on archlinux (allocator static_assert error)
This commit is contained in:
parent
ad0d5884ac
commit
574379cc6e
1 changed files with 12 additions and 9 deletions
|
@ -1,12 +1,15 @@
|
|||
diff --git a/code/CMakeModules/nel.cmake b/code/CMakeModules/nel.cmake
|
||||
index 95b28bb8a..8c4871379 100644
|
||||
index 95b28bb8a..92d014836 100644
|
||||
--- a/code/CMakeModules/nel.cmake
|
||||
+++ b/code/CMakeModules/nel.cmake
|
||||
@@ -874,7 +874,7 @@ MACRO(NL_SETUP_BUILD)
|
||||
ENDIF()
|
||||
|
||||
# use c++0x standard to use std::unique_ptr and std::shared_ptr
|
||||
- SET(PLATFORM_CXXFLAGS "${PLATFORM_CXXFLAGS} -std=c++0x")
|
||||
+ SET(PLATFORM_CXXFLAGS "${PLATFORM_CXXFLAGS} -std=gnu++14")
|
||||
|
||||
ADD_PLATFORM_FLAGS("-D_REENTRANT")
|
||||
@@ -873,8 +873,8 @@ MACRO(NL_SETUP_BUILD)
|
||||
ENDIF()
|
||||
ENDIF()
|
||||
|
||||
- # use c++0x standard to use std::unique_ptr and std::shared_ptr
|
||||
- SET(PLATFORM_CXXFLAGS "${PLATFORM_CXXFLAGS} -std=c++0x")
|
||||
+ # use gnu++14 standard to use std::unique_ptr and std::shared_ptr
|
||||
+ SET(PLATFORM_CXXFLAGS "${PLATFORM_CXXFLAGS} -std=gnu++14")
|
||||
|
||||
ADD_PLATFORM_FLAGS("-D_REENTRANT")
|
||||
|
||||
|
|
Loading…
Reference in a new issue