From: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> fio internally uses "x86" for any sort of IA32, so use x86 for $cpu as well which gets printed on ./configure. # grep i386 . -rI ./arch/arch.h:#if defined(__i386__) ./configure:elif check_define __i386__ ; then ./configure: cpu="i386" ./configure: i386|i486|i586|i686|i86pc|BePC) ./configure: cpu="i386" ./crc/sha1.c:#if defined(__i386__) || defined(__x86_64__) ./crc/xxhash.c:#if defined(__ARM_FEATURE_UNALIGNED) || defined(__i386) || defined(_M_IX86) || defined(__x86_64__) || defined(_M_X64) Signed-off-by: Tomohiro Kusumi <tkusumi@xxxxxxxxxx> --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index cba81af..3f5386f 100755 --- a/configure +++ b/configure @@ -377,7 +377,7 @@ case "$cpu" in cpu="$cpu" ;; i386|i486|i586|i686|i86pc|BePC) - cpu="i386" + cpu="x86" ;; x86_64|amd64) cpu="x86_64" -- 2.9.3 -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html