aboutsummaryrefslogtreecommitdiff
path: root/patches/gcc/linaro-6.3-2017.02/952-bionic-errno.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-06-04 22:29:30 -0700
committerAlexey Neyman <stilor@att.net>2017-06-05 00:29:14 -0700
commit872341e314418f68cb472a521015cfe4a57019b9 (patch)
tree7778b49dc0d6526e57b6d6b067ebf90fb28ccf43 /patches/gcc/linaro-6.3-2017.02/952-bionic-errno.patch
parent72a5a1d6de43503579cb77daacdf17a77a315c03 (diff)
downloadcrosstool-ng-872341e314418f68cb472a521015cfe4a57019b9.tar.gz
crosstool-ng-872341e314418f68cb472a521015cfe4a57019b9.tar.bz2
crosstool-ng-872341e314418f68cb472a521015cfe4a57019b9.zip
New GCC releases from Linaro
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'patches/gcc/linaro-6.3-2017.02/952-bionic-errno.patch')
-rw-r--r--patches/gcc/linaro-6.3-2017.02/952-bionic-errno.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/patches/gcc/linaro-6.3-2017.02/952-bionic-errno.patch b/patches/gcc/linaro-6.3-2017.02/952-bionic-errno.patch
deleted file mode 100644
index 91f6ca34..00000000
--- a/patches/gcc/linaro-6.3-2017.02/952-bionic-errno.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit 6cd4ad106ef87a3c58b0c3478e78409b47000de0
-Author: Howard Chu <hyc@symas.com>
-Date: Tue Apr 25 20:17:03 2017 -0700
-
- Fix, errno is volatile int
-
-diff --git a/libstdc++-v3/src/filesystem/dir.cc b/libstdc++-v3/src/filesystem/dir.cc
-index 6ff12d0..5bbd664 100644
---- a/libstdc++-v3/src/filesystem/dir.cc
-+++ b/libstdc++-v3/src/filesystem/dir.cc
-@@ -147,7 +147,7 @@ fs::_Dir::advance(error_code* ec, directory_options options)
-
- int err = std::exchange(errno, 0);
- const auto entp = readdir(dirp);
-- std::swap(errno, err);
-+ std::swap((int&)errno, err);
-
- if (entp)
- {