This patch adds targets to support the installation of clang in isolation.
Ok?
clang-2.patch (952 Bytes)
This patch adds targets to support the installation of clang in isolation.
Ok?
clang-2.patch (952 Bytes)
+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
+ifeq ($(MAKECMDGOALS),install-clang)
+ DIRS := tools/clang/Driver tools/clang/lib/Headers tools/clang/tools/cccIs "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.
Looks good to me, plz apply!
-Chris