diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-10-18 22:47:50 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-10-18 22:47:50 +0000 |
commit | ad5b62012c89177ecb3cb756b4a177bf4b2912b4 (patch) | |
tree | 085be2ea8711723e52d5ba8754fda0229b86fb80 | |
parent | 69917e27af9248cbce98bb56f1e1b5286aede759 (diff) |
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@913 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/Makefile b/test/Makefile index 2dd1423005..44ac0bef65 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,12 +1,12 @@ LLC := ../tools/Debug/llc AS := ../tools/Debug/as LLCOPTS := -dsched y -ARCHFLAGS = ## -xarch=v9 +ARCHFLAGS = CC = /opt/SUNWspro/bin/cc -CCFLAGS = -g $(ARCHFLAGS) +CCFLAGS = -g -xarch=v9 ## CC = gcc -## CCFLAGS = -g $(ARCHFLAGS) ## -mcpu=v9 +## CCFLAGS = -g -xarch=v9 ## -mcpu=v9 TESTS := $(wildcard *.ll) @@ -55,9 +55,9 @@ clean : %.o: %.s - $(CC) -c $(CCFLAGS) $< -xarch=v9 + $(CC) -c $(CCFLAGS) $< %: %.o - $(CC) -o $@ $< -xarch=v9 + $(CC) -o $@ $(CCFLAGS) $< |