diff options
author | Richard Henderson <rth@twiddle.net> | 2013-08-28 15:48:21 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2013-09-24 18:50:40 -0700 |
commit | e3608d66cea318698a2c4361d4e11a0e224c36db (patch) | |
tree | 6dc68b3ba3334a3ea0c33ddf52563c75664a900d /configure | |
parent | f828a4c8faa118e0ebab3e353ac6840f3b2a0318 (diff) |
configure: Allow command-line configure for ppc32
Similar to manually selecting i386 for an x86_64 host.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -981,6 +981,14 @@ for opt do done case "$cpu" in + ppc) + CPU_CFLAGS="-m32" + LDFLAGS="-m32 $LDFLAGS" + ;; + ppc64) + CPU_CFLAGS="-m64" + LDFLAGS="-m64 $LDFLAGS" + ;; sparc) LDFLAGS="-m32 $LDFLAGS" CPU_CFLAGS="-m32 -mcpu=ultrasparc" |