diff options
author | Chris Packham <judge.packham@gmail.com> | 2020-08-23 20:40:31 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-23 20:40:31 +1200 |
commit | df4e432a0bf27d4094e251ea7a8ca454fc8f5fc1 (patch) | |
tree | 420c83c12d13781011139f0cc3472d2003e99587 /packages/binutils/2.26.1/0013-Fix-a-missing-include-of-string.patch | |
parent | 0c3426eaecc21397ed735894d8bfa0c21158615d (diff) | |
parent | ab3497e663494dfb59e5d1953da2829c4d98a6a7 (diff) | |
download | crosstool-ng-df4e432a0bf27d4094e251ea7a8ca454fc8f5fc1.tar.gz crosstool-ng-df4e432a0bf27d4094e251ea7a8ca454fc8f5fc1.tar.bz2 crosstool-ng-df4e432a0bf27d4094e251ea7a8ca454fc8f5fc1.zip |
Merge pull request #1356 from ndusart/gold-gcc-10
fix missing include of string in binutils older than 2.33
Diffstat (limited to 'packages/binutils/2.26.1/0013-Fix-a-missing-include-of-string.patch')
-rw-r--r-- | packages/binutils/2.26.1/0013-Fix-a-missing-include-of-string.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/packages/binutils/2.26.1/0013-Fix-a-missing-include-of-string.patch b/packages/binutils/2.26.1/0013-Fix-a-missing-include-of-string.patch new file mode 100644 index 00000000..b04033a7 --- /dev/null +++ b/packages/binutils/2.26.1/0013-Fix-a-missing-include-of-string.patch @@ -0,0 +1,26 @@ +From 23272f9927dc95c0cf6f7c5aabcc0551eca572c5 Mon Sep 17 00:00:00 2001 +From: Martin Liska <mliska@suse.cz> +Date: Fri, 7 Jun 2019 07:36:52 +0200 +Subject: [PATCH] Fix a missing include of <string> + +gold/ChangeLog: + +2019-06-07 Martin Liska <mliska@suse.cz> + + * errors.h: Include string. +--- + gold/errors.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/gold/errors.h b/gold/errors.h +index 1e61c8dbb5..805b25fc9c 100644 +--- a/gold/errors.h ++++ b/gold/errors.h +@@ -24,6 +24,7 @@ + #define GOLD_ERRORS_H + + #include <cstdarg> ++#include <string> + + #include "gold-threads.h" + |