diff options
author | Alexey Neyman <stilor@att.net> | 2017-09-16 13:05:34 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-09-16 13:05:34 -0700 |
commit | ff4485ad30ab866a908ba8ef26f9798db8f72809 (patch) | |
tree | 86a4d4b7cdad64b3ed5607ffff53d7897333538d /packages/gcc-linaro/6.4-2017.08/952-bionic-errno.patch | |
parent | 8bf31117bc2036dc64e410ecd603ac3c2dbfb4f8 (diff) | |
download | crosstool-ng-ff4485ad30ab866a908ba8ef26f9798db8f72809.tar.gz crosstool-ng-ff4485ad30ab866a908ba8ef26f9798db8f72809.tar.bz2 crosstool-ng-ff4485ad30ab866a908ba8ef26f9798db8f72809.zip |
Update gcc-linaro to 2017.08
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'packages/gcc-linaro/6.4-2017.08/952-bionic-errno.patch')
-rw-r--r-- | packages/gcc-linaro/6.4-2017.08/952-bionic-errno.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/gcc-linaro/6.4-2017.08/952-bionic-errno.patch b/packages/gcc-linaro/6.4-2017.08/952-bionic-errno.patch new file mode 100644 index 00000000..91f6ca34 --- /dev/null +++ b/packages/gcc-linaro/6.4-2017.08/952-bionic-errno.patch @@ -0,0 +1,19 @@ +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) + { |