This patch adds targets to support the installation of clang in isolation. Ok? -------------- next part -------------- A non-text attachment was scrubbed... Name: clang-2.patch Type: application/octet-stream Size: 952 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090119/39061b42/attachment.obj> -------------- next part --------------
On Mon, Jan 19, 2009 at 10:05 AM, Mike Stump <mrs at apple.com> wrote:> This patch adds targets to support the installation of clang in isolation. > > Ok? >+ifeq ($(MAKECMDGOALS),install-clang) + DIRS := tools/clang/Driver tools/clang/lib/Headers tools/clang/tools/ccc Is "tools/clang" the official name of the clang development directory? I was still using "tools/cfe". This is okay if the above question is "yes", and building and installing LLVM without clang isn't affected. -bw
On Jan 19, 2009, at 11:27 AM, Bill Wendling wrote:> +ifeq ($(MAKECMDGOALS),install-clang) > + DIRS := tools/clang/Driver tools/clang/lib/Headers tools/clang/ > tools/ccc > > Is "tools/clang" the official name of the clang development directory?According to step #2 in http://clang.llvm.org/get_started.html, it is the recommended place for it.> This is okay if the above question is "yes", and building and > installing LLVM without clang isn't affected.Yes, there should be no change otherwise.