[llvm-commits] CVS: reopt/lib/Makefile
Brian Gaeke
gaeke at cs.uiuc.edu
Wed Apr 7 00:09:01 PDT 2004
Changes in directory reopt/lib:
Makefile updated: 1.17 -> 1.18
---
Log message:
Don't build ScratchMemory on PPC.
---
Diffs of the changes: (+7 -2)
Index: reopt/lib/Makefile
diff -u reopt/lib/Makefile:1.17 reopt/lib/Makefile:1.18
--- reopt/lib/Makefile:1.17 Mon Nov 3 00:16:38 2003
+++ reopt/lib/Makefile Wed Apr 7 00:08:15 2004
@@ -1,9 +1,14 @@
LEVEL = ..
-DIRS := BinInterface Mapping ScratchMemory TraceCache Trigger
+DIRS := BinInterface Mapping TraceCache Trigger
include $(LEVEL)/Makefile.config
-# These dirs contain files that don't currently even compile under Linux/x86:
+# Mac OS X assembler doesn't love the dummy function.
+ifneq ($(ARCH),PowerPC)
+DIRS := $(DIRS) ScratchMemory
+endif
+
+# These dirs contain files that don't currently compile under Linux/x86:
ifeq ($(ARCH),Sparc)
DIRS := $(DIRS) Inst LightWtProfiling
endif
More information about the llvm-commits
mailing list