[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: binutils: Fix Loongson workaround.
From: |
guix-commits |
Subject: |
02/02: binutils: Fix Loongson workaround. |
Date: |
Tue, 27 Jul 2021 09:15:33 -0400 (EDT) |
mbakke pushed a commit to branch core-updates
in repository guix.
commit f12709ec5fba2544bf6711429a6a7217062af4f2
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Tue Jul 27 12:32:31 2021 +0200
binutils: Fix Loongson workaround.
This is a follow-up to 2fa26446a186664c6364de0536380e43113dc95f which
inadvertently inverted the value of this variable.
* gnu/packages/patches/binutils-loongson-workaround.patch: Flip variable
value
as it was before 2fa26446a186.
---
gnu/packages/patches/binutils-loongson-workaround.patch | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/patches/binutils-loongson-workaround.patch
b/gnu/packages/patches/binutils-loongson-workaround.patch
index 68ab47d..f05d6c3 100644
--- a/gnu/packages/patches/binutils-loongson-workaround.patch
+++ b/gnu/packages/patches/binutils-loongson-workaround.patch
@@ -13,7 +13,7 @@ Patch by Mark H Weaver <mhw@netris.org>.
/* ...likewise -mfix-loongson2f-nop. */
-static bool mips_fix_loongson2f_nop;
-+static bool mips_fix_loongson2f_nop = FALSE;
++static bool mips_fix_loongson2f_nop = TRUE;
/* True if -mfix-loongson2f-nop or -mfix-loongson2f-jump passed. */
static bool mips_fix_loongson2f;