diff options
author | Cupertino Miranda <cupertino.miranda@oracle.com> | 2022-12-09 13:59:03 +0000 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-12-18 21:21:14 +1300 |
commit | 66ac9e649a5dcbb4ea9969e071c71db2e9fa2165 (patch) | |
tree | efa248723440246162bc5656e834881b6f45693c /packages/binutils-oracle/git-43eccdca/0000-Fix-a-missing-include-of-string.patch | |
parent | cdae8d0559d41f9464ab54e2967e23a0ee06a358 (diff) | |
download | crosstool-ng-66ac9e649a5dcbb4ea9969e071c71db2e9fa2165.tar.gz crosstool-ng-66ac9e649a5dcbb4ea9969e071c71db2e9fa2165.tar.bz2 crosstool-ng-66ac9e649a5dcbb4ea9969e071c71db2e9fa2165.zip |
Add Oracle ol8u7 product to crosstool-ng
This commit adds support for the following Oracle products, targeting
Oracle Linux 8.7:
Binutils 2.30-117.0.1
GCC 8.5.0-15.0.2
glibc 2.28-211.1.0.1
UEK5/u4 4.14.35-2025.400.8
Sample configuration files are provided for the following triplets:
aarch64-ol8u7-linux-gnu
x86_64-ol8u7-linux-gnu
i686-ol8u7-linux-gnu
Signed-off-by: Cupertino Miranda <cupertino.miranda@oracle.com>
Diffstat (limited to 'packages/binutils-oracle/git-43eccdca/0000-Fix-a-missing-include-of-string.patch')
-rw-r--r-- | packages/binutils-oracle/git-43eccdca/0000-Fix-a-missing-include-of-string.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/binutils-oracle/git-43eccdca/0000-Fix-a-missing-include-of-string.patch b/packages/binutils-oracle/git-43eccdca/0000-Fix-a-missing-include-of-string.patch new file mode 100644 index 00000000..141ddf82 --- /dev/null +++ b/packages/binutils-oracle/git-43eccdca/0000-Fix-a-missing-include-of-string.patch @@ -0,0 +1,24 @@ +This patch is a backport from binutils-gdb commit: +a3972330f4: Fix a missing include of <string> + +This code is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the +Free Software Foundation; either version 3, or (at your option) any +later version. + +This code is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +diff -Nur binutils-gdb/gold/errors.h binutils-gdb-oracle/gold/errors.h +--- binutils-gdb/gold/errors.h 2022-06-16 17:49:08.412691685 -0500 ++++ binutils-gdb-oracle/gold/errors.h 2022-06-16 18:34:19.463006903 -0500 +@@ -24,6 +24,7 @@ + #define GOLD_ERRORS_H + + #include <cstdarg> ++#include <string> + + #include "gold-threads.h" + |