r194833 - libc++: Install headers in include/, rather than lib/

Justin Bogner mail at justinbogner.com
Fri Nov 15 10:07:57 PST 2013


Author: bogner
Date: Fri Nov 15 12:07:57 2013
New Revision: 194833

URL: http://llvm.org/viewvc/llvm-project?rev=194833&view=rev
Log:
libc++: Install headers in include/, rather than lib/

When using the configure build system, the libc++ headers were being
installed in lib/, whereas cmake installs them in include/. Since
include/ makes more sense for headers, we'll make both systems install
headers there.

Modified:
    cfe/trunk/runtime/libcxx/Makefile

Modified: cfe/trunk/runtime/libcxx/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/runtime/libcxx/Makefile?rev=194833&r1=194832&r2=194833&view=diff
==============================================================================
--- cfe/trunk/runtime/libcxx/Makefile (original)
+++ cfe/trunk/runtime/libcxx/Makefile Fri Nov 15 12:07:57 2013
@@ -15,7 +15,7 @@
 CLANG_LEVEL := ../..
 include $(CLANG_LEVEL)/Makefile
 
-PROJ_libcxx_hdrs := $(DESTDIR)$(PROJ_prefix)/lib
+PROJ_libcxx_hdrs := $(DESTDIR)$(PROJ_prefix)/include
 
 # Expect libcxx to be in llvm/projects/libcxx
 LIBCXX_SRC_ROOT := $(LLVM_SRC_ROOT)/projects/libcxx





More information about the cfe-commits mailing list