From 606fdfaa6d40527ab1709ee99af83db2948c1df4 Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Fri, 24 Jul 2015 12:39:06 +1000 Subject: [PATCH] build: add 'x86' option back in to configure Accidentally removed @ https://github.com/nodejs/io.js/pull/2124 when ppc support was added PR-URL: https://github.com/nodejs/io.js/pull/2233 Reviewed-By: Johan Bergstrom Reviewed-By: Jeremiah Senkpiel --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 8d52a1eb28c541..ab2383c8141b15 100755 --- a/configure +++ b/configure @@ -27,7 +27,7 @@ parser = optparse.OptionParser() valid_os = ('win', 'mac', 'solaris', 'freebsd', 'openbsd', 'linux', 'android') valid_arch = ('arm', 'arm64', 'ia32', 'mips', 'mipsel', 'ppc', 'ppc64', 'x32', - 'x64') + 'x64', 'x86') valid_arm_float_abi = ('soft', 'softfp', 'hard') valid_mips_arch = ('loongson', 'r1', 'r2', 'r6', 'rx') valid_mips_fpu = ('fp32', 'fp64', 'fpxx')