diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-13 17:22:49 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-13 17:22:49 +0000 |
commit | 25a619f735fad9a2650fb8e42df0906a0fa4ba84 (patch) | |
tree | 0ff91629d5f2d812d6ed690ad88b314f5b2f62b4 | |
parent | a8c58d572b294c90bde4b78a0121d73db78590db (diff) | |
download | external_llvm-25a619f735fad9a2650fb8e42df0906a0fa4ba84.zip external_llvm-25a619f735fad9a2650fb8e42df0906a0fa4ba84.tar.gz external_llvm-25a619f735fad9a2650fb8e42df0906a0fa4ba84.tar.bz2 |
Add temporary hack to teach LLVM to reconfigure itself to pick up the new PIC16
AsmPrinter (in AsmPrinters.def).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78922 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.rules | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules index 5a5544c..3f30198 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -128,8 +128,11 @@ reconfigure: $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \ $(ConfigStatusScript) +# FIXME: The PIC16/AsmPrinter line here is a hack to force a reconfigure to pick +# up AsmPrinter changes. Remove it after a reasonable delay from 2009-08-13. + .PRECIOUS: $(ConfigStatusScript) -$(ConfigStatusScript): $(ConfigureScript) +$(ConfigStatusScript): $(ConfigureScript) $(LLVM_SRC_ROOT)/lib/Target/PIC16/AsmPrinter/Makefile $(Echo) Reconfiguring with $< $(Verb) cd $(PROJ_OBJ_ROOT) && \ if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \ |