From 8a256e988f2d2bc7318248a7f94ffdbe69c59de4 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 9 Feb 2013 10:56:41 +0000 Subject: [PATCH] add /usr/lib/gcc/$(DEB_HOST_MULTIARCH)/$(GCC_VERSION)/include/ to the search path --- debian/README.source | 7 +++---- debian/control | 3 ++- debian/rules | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/debian/README.source b/debian/README.source index d0b74a3c..d2b776e4 100644 --- a/debian/README.source +++ b/debian/README.source @@ -1,7 +1,6 @@ -In the repack script (orig-tar.sh), we are creating a subdirectory tools/clang/ -and storing all the sources of clang in it. -After that, the llvm sources are unpack, its patches applied +The tarball are basically the one from upstream, renamed and recompressed using +tar.bz2 - -- Sylvestre Ledru Tue, 12 Apr 2011 21:21:24 +0200 + -- Sylvestre Ledru , Sat, 9 Feb 2013 11:36:37 +0100 diff --git a/debian/control b/debian/control index 7c6bc436..224d4ed1 100644 --- a/debian/control +++ b/debian/control @@ -233,7 +233,8 @@ Description: clang library - Common development package * A single unified parser for C, Objective C, C++, and Objective C++ * Conformance with C/C++/ObjC and their variants . - This package contains the clang generic headers. + This package contains the clang generic headers and some libraries + (profiling, etc). # Package: compiler-rt diff --git a/debian/rules b/debian/rules index 074718db..7d1902d2 100755 --- a/debian/rules +++ b/debian/rules @@ -17,7 +17,7 @@ DEB_HOST_ARCH = $(shell dpkg-architecture -qDEB_HOST_ARCH) OCAML_STDLIB_DIR ?= $(shell ocamlc -where) confargs := \ - --with-c-include-dirs=/usr/include/$(DEB_HOST_MULTIARCH):/usr/include/$(DEB_HOST_GNU_TYPE):/usr/include \ + --with-c-include-dirs=/usr/include/$(DEB_HOST_MULTIARCH):/usr/include/$(DEB_HOST_GNU_TYPE):/usr/include:/usr/lib/gcc/$(DEB_HOST_MULTIARCH)/$(GCC_VERSION)/include/ \ --with-cxx-include-root=/usr/include/c++/$(GCC_VERSION) \ --with-cxx-include-arch=$(DEB_HOST_GNU_TYPE) \ --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE)