diff options
author | Marius Bakke <marius@gnu.org> | 2021-07-27 12:32:31 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-07-27 15:13:11 +0200 |
commit | f12709ec5fba2544bf6711429a6a7217062af4f2 (patch) | |
tree | 5018889f13bce63c73328ed45e2a420e71c9597d /gnu | |
parent | bc9bcaf8e01a3482429476dff1001164a1bbde1f (diff) | |
download | guix-f12709ec5fba2544bf6711429a6a7217062af4f2.tar.gz |
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.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/patches/binutils-loongson-workaround.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/patches/binutils-loongson-workaround.patch b/gnu/packages/patches/binutils-loongson-workaround.patch index 68ab47de91..f05d6c3c96 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; |