diff options
author | Alexey Neyman <stilor@att.net> | 2022-02-14 00:11:42 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-14 00:11:42 -0800 |
commit | 681aaef1f1ff39c341fdc529e0db2c14639a58d8 (patch) | |
tree | ce98c2b3d9648db065d27add325370392a35d584 /packages/binutils-oracle/git-889339ab/0012-Fix-a-missing-include-of-string.patch | |
parent | ba680a3e5b8c62a7c1554e71f6d09903dac95a2f (diff) | |
parent | 86c2982568de1ad4d4cc12a65b19231331484405 (diff) | |
download | crosstool-ng-681aaef1f1ff39c341fdc529e0db2c14639a58d8.tar.gz crosstool-ng-681aaef1f1ff39c341fdc529e0db2c14639a58d8.tar.bz2 crosstool-ng-681aaef1f1ff39c341fdc529e0db2c14639a58d8.zip |
Merge pull request #1674 from stilor/master
Updates to make `ct-ng build-all` pass
Diffstat (limited to 'packages/binutils-oracle/git-889339ab/0012-Fix-a-missing-include-of-string.patch')
-rw-r--r-- | packages/binutils-oracle/git-889339ab/0012-Fix-a-missing-include-of-string.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/packages/binutils-oracle/git-889339ab/0012-Fix-a-missing-include-of-string.patch b/packages/binutils-oracle/git-889339ab/0012-Fix-a-missing-include-of-string.patch new file mode 100644 index 00000000..b04033a7 --- /dev/null +++ b/packages/binutils-oracle/git-889339ab/0012-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" + |