From d0a64733ef1984e669154791dd21e5ec2d769dea Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Thu, 6 Jul 2006 00:07:47 +0000 Subject: [PATCH] Use -fno-align-functions to really disable function alignment (a value of 0 used the default alignment, e.g. 16 bytes on x86_64). This is purely cosmetics and only helps reading the resulting disassembly. --- SheepShaver/src/Unix/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SheepShaver/src/Unix/configure.ac b/SheepShaver/src/Unix/configure.ac index ef48f1be..c78b2306 100644 --- a/SheepShaver/src/Unix/configure.ac +++ b/SheepShaver/src/Unix/configure.ac @@ -1414,7 +1414,7 @@ if [[ "x$EMULATED_PPC" = "xyes" ]]; then x*) have_dyngen_gcc3=yes ;; esac if [[ "x$have_dyngen_gcc3" = "xyes" ]]; then - DYNGEN_OP_FLAGS="$DYNGEN_OP_FLAGS -falign-functions=0" + DYNGEN_OP_FLAGS="$DYNGEN_OP_FLAGS -fno-align-functions" else DYNGEN_OP_FLAGS="$DYNGEN_OP_FLAGS -malign-functions=0" fi