-
Notifications
You must be signed in to change notification settings - Fork 403
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1093 from ApexAI/iox-#1092-add-limits-include-rel…
…ease-1.0 [Backport release 1.0] Iox #1092 add limits include for gcc 11
- Loading branch information
Showing
20 changed files
with
117 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.1 | ||
1.0.2 |
11 changes: 11 additions & 0 deletions
11
cmake/googletest/0001-remove-werror-from-build-flags.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- /googletest/cmake/internal_utils.cmake | ||
+++ /googletest/cmake/internal_utils.cmake.new | ||
@@ -99,7 +99,7 @@ macro(config_compiler_and_linker) | ||
set(cxx_no_exception_flags "-EHs-c- -D_HAS_EXCEPTIONS=0") | ||
set(cxx_no_rtti_flags "-GR-") | ||
elseif (CMAKE_COMPILER_IS_GNUCXX) | ||
- set(cxx_base_flags "-Wall -Wshadow -Werror") | ||
+ set(cxx_base_flags "-Wall -Wshadow") | ||
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.0.0) | ||
set(cxx_base_flags "${cxx_base_flags} -Wno-error=dangling-else") | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
iceoryx_posh/cmake/cpptoml/0001-Add-include-limits-to-port-to-GCC-11.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 3323098aa186c7daa8c969395c0c550f30875193 Mon Sep 17 00:00:00 2001 | ||
From: Homalozoa <nx.tardis@gmail.com> | ||
Date: Sat, 22 May 2021 18:16:57 +0800 | ||
Subject: [PATCH] Add include <limits> to port to GCC 11 | ||
|
||
Signed-off-by: Homalozoa <nx.tardis@gmail.com> | ||
--- | ||
include/cpptoml.h | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/include/cpptoml.h b/include/cpptoml.h | ||
index 5a00da3..1dc9fd1 100644 | ||
--- a/include/cpptoml.h | ||
+++ b/include/cpptoml.h | ||
@@ -14,6 +14,7 @@ | ||
#include <cstring> | ||
#include <fstream> | ||
#include <iomanip> | ||
+#include <limits> | ||
#include <map> | ||
#include <memory> | ||
#include <sstream> | ||
-- | ||
2.31.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters