diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-02-01 14:56:45 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-08-17 07:05:11 +0000 |
commit | a15a7a5c13b1b51215dbe42fb5c8304fc2fee834 (patch) | |
tree | 4a6f8f777bb537d4bbf164ccf0f473d5918451f4 /util/crossgcc/patches/binutils-2.33.1_as-ipxe.patch | |
parent | 150c43833490a158be8545489f3b37344a5ece15 (diff) |
crossgcc: Upgrade binutils to version 2.35
Using "MAKEINFO = @MAKEINFO@", it fails to compile, so
binutils-2.35_no-makeinfo.patch will change that to "MAKEINFO = true"
Change-Id: I0ad01e5da34c96fee6a9b1a63897a9fb28471c75
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38666
Reviewed-by: Christian Walter <christian.walter@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/crossgcc/patches/binutils-2.33.1_as-ipxe.patch')
-rw-r--r-- | util/crossgcc/patches/binutils-2.33.1_as-ipxe.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/util/crossgcc/patches/binutils-2.33.1_as-ipxe.patch b/util/crossgcc/patches/binutils-2.33.1_as-ipxe.patch deleted file mode 100644 index 4d2c00a17f..0000000000 --- a/util/crossgcc/patches/binutils-2.33.1_as-ipxe.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 6984bd861cc595e56d26ea033851d9174e855129 Mon Sep 17 00:00:00 2001 -From: Himanshu Sahdev aka CunningLearner <sahdev.himan@gmail.com> -Date: Mon, 26 Aug 2019 16:57:13 +0530 -Subject: [PATCH] as: facilitate tests based on /dev/null - -Signed-off-by: Himanshu Sahdev <himanshusah@hcl.com> - ---- - gas/as.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/gas/as.c b/gas/as.c -index 728811bc..78b4802c 100644 ---- a/gas/as.c -+++ b/gas/as.c -@@ -1203,7 +1203,7 @@ main (int argc, char ** argv) - { - char ** argv_orig = argv; - struct stat sob; -- -+ const char *dev_null_file="/dev/null"; - int macro_strip_at; - - start_time = get_run_time (); -@@ -1252,7 +1252,7 @@ main (int argc, char ** argv) - so that switches like --hash-size can be honored. */ - parse_args (&argc, &argv); - -- if (argc > 1 && stat (out_file_name, &sob) == 0) -+ if (argc > 1 && stat (out_file_name, &sob) == 0 && strcmp(out_file_name,dev_null_file)!=0) - { - int i; - --- -2.17.1 - |