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
|
||||||
endif
|
endif
|
||||||
ifeq ($(DOTRACING), yes)
|
ifeq ($(DOTRACING), yes)
|
||||||
TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr64
|
TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr.$(ARCH)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
LLCLIBS := $(LLCLIBS) -lm
|
LLCLIBS := $(LLCLIBS) -lm
|
||||||
|
|
||||||
clean::
|
clean::
|
||||||
$(RM) a.out core
|
$(RM) -f a.out core
|
||||||
$(RM) -rf Output/
|
$(RM) -rf Output/
|
||||||
|
|
||||||
# Compile from X.c to Output/X.ll
|
# Compile from X.c to Output/X.ll
|
||||||
|
|
Loading…
Reference in New Issue