diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-12-20 06:25:37 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-12-20 06:25:37 +0000 |
| commit | e0f3e616665d27514704778efefab9c3fad0e9c2 (patch) | |
| tree | c72246dd8b26a7fab38840d6cf86bac413a59ab0 | |
| parent | 04b6a081fc37e48bb54e99888f13bdb712cb923e (diff) | |
| download | bcm5719-llvm-e0f3e616665d27514704778efefab9c3fad0e9c2.tar.gz bcm5719-llvm-e0f3e616665d27514704778efefab9c3fad0e9c2.zip | |
Install three utils, "FileCheck", "count", and "not", for now to appease llvmlab dragonegg builder.
Since r197684, "install/bin/llvm-config --obj-root" hasn't shown the build tree. The builder was finding utils in the build tree, from the installed tree.
I will revert this after dragonegg builder would be tweaked not to use installed llvm-config.
llvm-svn: 197786
| -rw-r--r-- | llvm/utils/FileCheck/Makefile | 4 | ||||
| -rw-r--r-- | llvm/utils/count/Makefile | 4 | ||||
| -rw-r--r-- | llvm/utils/not/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/llvm/utils/FileCheck/Makefile b/llvm/utils/FileCheck/Makefile index 268b7bc919a..b8762365984 100644 --- a/llvm/utils/FileCheck/Makefile +++ b/llvm/utils/FileCheck/Makefile @@ -14,8 +14,8 @@ USEDLIBS = LLVMSupport.a # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 -# Don't install this utility -NO_INSTALL = 1 +# FIXME: Don't install this utility +#NO_INSTALL = 1 include $(LEVEL)/Makefile.common diff --git a/llvm/utils/count/Makefile b/llvm/utils/count/Makefile index 8de076a8803..2a955e66679 100644 --- a/llvm/utils/count/Makefile +++ b/llvm/utils/count/Makefile @@ -14,7 +14,7 @@ USEDLIBS = # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 -# Don't install this utility -NO_INSTALL = 1 +# FIXME: Don't install this utility +#NO_INSTALL = 1 include $(LEVEL)/Makefile.common diff --git a/llvm/utils/not/Makefile b/llvm/utils/not/Makefile index f37f166c6c7..26b7450d48b 100644 --- a/llvm/utils/not/Makefile +++ b/llvm/utils/not/Makefile @@ -14,8 +14,8 @@ USEDLIBS = LLVMSupport.a # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS = 1 -# Don't install this utility -NO_INSTALL = 1 +# FIXME: Don't install this utility +#NO_INSTALL = 1 include $(LEVEL)/Makefile.common |

