diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-03-18 03:53:22 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-03-18 03:53:22 +0000 |
commit | d79b4eb506130ff8b09f751e85417d99807a9c47 (patch) | |
tree | 85db39699dc1e473a27f50f4c5d0380da43a88db /test | |
parent | 4bec7fab45e4af21187e55078de818f5c5a68d94 (diff) | |
download | external_llvm-d79b4eb506130ff8b09f751e85417d99807a9c47.zip external_llvm-d79b4eb506130ff8b09f751e85417d99807a9c47.tar.gz external_llvm-d79b4eb506130ff8b09f751e85417d99807a9c47.tar.bz2 |
Fix libraries.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1912 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.tests | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests index c6c7862..6231f55 100644 --- a/test/Makefile.tests +++ b/test/Makefile.tests @@ -43,7 +43,7 @@ DIS = /usr/ccs/bin/dis CP = /bin/cp -f CFLAGS += -g -xarch=v9 -LLCLIB = $(LEVEL)/test/runtime.o +LLCLIB = $(LEVEL)/test/Libraries/runtime.o LIBS += $(LLCLIB) @@ -83,7 +83,7 @@ Output/%.llc.s: Output/%.linked.bc # Assemble (and link) an LLVM-linked program using the system assembler... # Output/%.llc: Output/%.llc.s - $(CC) $(CFLAGS) $< -o $@ + $(CC) $(CFLAGS) $< $(LIBS) -o $@ # # Testing versions of provided utilities... |