forked from OSchip/llvm-project
Fix a race condition in the makefile andrew reported
llvm-svn: 29227
This commit is contained in:
parent
1b928478aa
commit
02b5dcd0ef
|
@ -19,7 +19,7 @@ GENFILE:=$(PROJ_SRC_ROOT)/include/llvm/Intrinsics.gen
|
|||
INTRINSICTD := $(PROJ_SRC_ROOT)/include/llvm/Intrinsics.td
|
||||
INTRINSICTDS := $(wildcard $(PROJ_SRC_ROOT)/include/llvm/Intrinsics*.td)
|
||||
|
||||
$(ObjDir)/Intrinsics.gen.tmp: $(INTRINSICTDS) $(TBLGEN)
|
||||
$(ObjDir)/Intrinsics.gen.tmp: $(ObjDir)/.dir $(INTRINSICTDS) $(TBLGEN)
|
||||
$(Echo) Building Intrinsics.gen.tmp from Intrinsics.td
|
||||
$(Verb) $(TableGen) $(INTRINSICTD) -o $@ -gen-intrinsic
|
||||
|
||||
|
|
Loading…
Reference in New Issue