add /usr/lib/gcc/$(DEB_HOST_MULTIARCH)/$(GCC_VERSION)/include/ to the search path

This commit is contained in:
Sylvestre Ledru 2013-02-09 10:56:41 +00:00
parent 0fe7c43134
commit 8a256e988f
3 changed files with 6 additions and 6 deletions

View File

@ -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 <sylvestre@debian.org> Tue, 12 Apr 2011 21:21:24 +0200
-- Sylvestre Ledru <sylvestre@debian.org>, Sat, 9 Feb 2013 11:36:37 +0100

3
debian/control vendored
View File

@ -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

2
debian/rules vendored
View File

@ -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)