1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Description: add x87 to the list of valid arches and replace ia32 by x87 for default i386
Forwarded: not yet, need a way to detect x87
Last-Update: 2016-02-29
Author: Jérémy Lal <kapouer@melix.org>
--- a/configure
+++ b/configure
@@ -47,7 +47,7 @@
valid_os = ('win', 'mac', 'solaris', 'freebsd', 'openbsd', 'linux',
'android', 'aix')
valid_arch = ('arm', 'arm64', 'ia32', 'mips', 'mipsel', 'mips64el', 'ppc', 'ppc64', 'x32',
- 'x64', 'x86', 's390', 's390x')
+ 'x64', 'x86', 'x87', 's390', 's390x')
valid_arm_float_abi = ('soft', 'softfp', 'hard')
valid_arm_fpu = ('vfp', 'vfpv3', 'vfpv3-d16', 'neon')
valid_mips_arch = ('loongson', 'r1', 'r2', 'r6', 'rx')
@@ -663,7 +663,7 @@
matchup = {
'__aarch64__' : 'arm64',
'__arm__' : 'arm',
- '__i386__' : 'ia32',
+ '__i386__' : 'x87',
'__MIPSEL__' : 'mipsel',
'__mips__' : 'mips',
'__PPC64__' : 'ppc64',
|