forked from OSchip/llvm-project
Use libinstr.$(ARCH).a instead of libinstr64.a
Also, $(RM) needs -f flag. llvm-svn: 7128
This commit is contained in:
parent
6c9dc89ba5
commit
eb44eb1e08
|
@ -75,14 +75,14 @@ else
|
|||
endif
|
||||
endif
|
||||
ifeq ($(DOTRACING), yes)
|
||||
TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr64
|
||||
TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr.$(ARCH)
|
||||
endif
|
||||
|
||||
|
||||
LLCLIBS := $(LLCLIBS) -lm
|
||||
|
||||
clean::
|
||||
$(RM) a.out core
|
||||
$(RM) -f a.out core
|
||||
$(RM) -rf Output/
|
||||
|
||||
# Compile from X.c to Output/X.ll
|
||||
|
|
Loading…
Reference in New Issue