From: Pauli N. <su...@gm...> - 2010-03-31 06:33:56
|
-m64 was not set to ARCH_FLAGS. Signed-off-by: Pauli Nieminen <su...@gm...> --- I noticed that there was difference in -m32 handling compare to -m64. I suspect that -m64 would need same but I don't know if there is some reason not to add the flag same way. configure.ac | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index 17d61d1..f3d3dc8 100644 --- a/configure.ac +++ b/configure.ac @@ -179,6 +179,7 @@ AC_ARG_ENABLE([64-bit], if test "x$enable_64bit" = xyes; then if test "x$GCC" = xyes; then CFLAGS="$CFLAGS -m64" + ARCH_FLAGS="$ARCH_FLAGS -m64" LDFLAGS="$LDFLAGS -m64" fi if test "x$GXX" = xyes; then -- 1.7.0 |