mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
mpir: fix build on MIPS R6 CPUs
Commit ef9eebf65f
tried to fix this
problem in a wrong way. It was fixed only for generic R6 CPUs, so the
problem still persist if you choose any other R6 CPU, like I6400 for
instance.
Fix it properly by using the right kconfig options.
Fixes:
http://autobuild.buildroot.net/results/f33/f33cb1e0b49fe8aee68fb4b66ea4c304b71a6f8f/
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
c270b4a4c0
commit
dd9b085daf
@ -27,7 +27,7 @@ MPIR_CONF_ENV += MPN_PATH="generic"
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
# Optimized mips32/mips64 code not suitable for mips32r6/mips64r6
|
# Optimized mips32/mips64 code not suitable for mips32r6/mips64r6
|
||||||
ifeq ($(BR2_mips_32r6)$(BR2_mips_64r6),y)
|
ifeq ($(BR2_MIPS_CPU_MIPS32R6)$(BR2_MIPS_CPU_MIPS64R6),y)
|
||||||
MPIR_CONF_ENV += MPN_PATH="generic"
|
MPIR_CONF_ENV += MPN_PATH="generic"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user