Commit 51d00936 by Jim Stichnoth

Subzero: Minor Makefile fix.

The problem showed up after the link step failed, in which case $(OBJDIR)/llvm2ice was deleted but the ./llvm2ice symlink still existed. A subsequent "make check-lit" or "make check" would fail, so the basic "make" would have to be done first. BUG= none R=jvoung@chromium.org Review URL: https://codereview.chromium.org/887873002
parent 72984d88
...@@ -182,7 +182,7 @@ $(OBJDIR): ...@@ -182,7 +182,7 @@ $(OBJDIR):
$(OBJDIR)/unittest: $(OBJDIR) $(OBJDIR)/unittest: $(OBJDIR)
@mkdir -p $@ @mkdir -p $@
check-lit: llvm2ice make_symlink check-lit: $(OBJDIR)/llvm2ice make_symlink
LLVM_BIN_PATH=$(LLVM_BIN_PATH) \ LLVM_BIN_PATH=$(LLVM_BIN_PATH) \
$(LLVM_SRC_PATH)/utils/lit/lit.py -sv tests_lit $(LLVM_SRC_PATH)/utils/lit/lit.py -sv tests_lit
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment