diff options
author | Holger Freyther <zecke@selfish.org> | 2006-08-06 11:45:56 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2006-08-06 11:45:56 +0000 |
commit | b8d1ef0e4fb7c506a5c0de055a276159049df948 (patch) | |
tree | da934a76e83ee9c8ddac03bbabc3d609567f3c94 /packages/gcc/gcc_4.0.2.bb | |
parent | 44b1ddb504535400e1272d5d9259778249f36b47 (diff) |
packages/gcc: For targets (libstdc++,java,mudflap...) use xgcc -E as CPP
GCC compiles the xgcc cross compiler and will compile target
libraries e.g. libstdc++. It uses autoconf to configure the target
libraries which uses /usr/bin/cpp to determine the presence of
host includes.
By using xgcc we will not risk to include /usr/include to find standard
headers. If we do our cross compile check will hit.
The gcc 3.4 series patch only addresses target-libstdc++ where the
gcc3.3 and gcc4 series patch all targets
Diffstat (limited to 'packages/gcc/gcc_4.0.2.bb')
-rw-r--r-- | packages/gcc/gcc_4.0.2.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/gcc/gcc_4.0.2.bb b/packages/gcc/gcc_4.0.2.bb index b5b85a983f..73ff96e28c 100644 --- a/packages/gcc/gcc_4.0.2.bb +++ b/packages/gcc/gcc_4.0.2.bb @@ -14,7 +14,8 @@ SRC_URI = "${GNU_MIRROR}/gcc/gcc-${PV}/gcc-${PV}.tar.bz2 \ file://arm-nolibfloat.patch;patch=1 \ file://arm-softfloat.patch;patch=1 \ file://ldflags.patch;patch=1 \ - file://GCOV_PREFIX_STRIP-cross-profile_4.1.patch;patch=1" + file://GCOV_PREFIX_STRIP-cross-profile_4.1.patch;patch=1 \ + file://zecke-xgcc-cpp.patch;patch=1 " # uclibc patches below SRC_URI_append = " file://100-uclibc-conf.patch;patch=1 \ |