summaryrefslogtreecommitdiff
path: root/patches/gcc/6.3.0/952-bionic-errno.patch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-05-12 05:00:32 (GMT)
committerAlexey Neyman <stilor@att.net>2017-07-08 17:56:29 (GMT)
commit5935d586e140b35398f45772d5749924dea7da57 (patch)
tree371d497ec06cba5afca65a5616bcb37f280481b7 /patches/gcc/6.3.0/952-bionic-errno.patch
parentd589df4ebebdd9e89a66dc788e23b3c3db5f23d5 (diff)
Convert gcc to new framework.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'patches/gcc/6.3.0/952-bionic-errno.patch')
-rw-r--r--patches/gcc/6.3.0/952-bionic-errno.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/patches/gcc/6.3.0/952-bionic-errno.patch b/patches/gcc/6.3.0/952-bionic-errno.patch
deleted file mode 100644
index 91f6ca3..0000000
--- a/patches/gcc/6.3.0/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)
- {