From 326c136dc294f64b2ec516bb97241eab6f97244a Mon Sep 17 00:00:00 2001 From: Jim Date: Sun, 4 Dec 2011 11:00:32 -0500 Subject: [PATCH] makefile: don't compile with registers for PPC; it's a lot faster, but disables async PNC I/O, which makes remote disk access VERY slow. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index dd09a1c..f44e739 100644 --- a/makefile +++ b/makefile @@ -71,7 +71,7 @@ demo: # demo (limited: 1-2 amlc, 1 disk drive up to 160MB, one PNC node) (Intel demop: # demo (PowerPC) - cc -mmacosx-version-min=10.4 -fno-stack-protector -arch ppc -DREV=\"${REV}\" -DWITHREGS -DDEMO -DNOTRACE -DFAST -O em.c -fobey-inline -mdynamic-no-pic -o em + cc -DNOREGS -mmacosx-version-min=10.4 -fno-stack-protector -arch ppc -DREV=\"${REV}\" -DDEMO -DNOTRACE -DFAST -O em.c -fobey-inline -mdynamic-no-pic -o em strip em