mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 12:49:34 +02:00
gcc-4.7: Add recipes
Add new recipes for gcc-4_7-branch right now gcc 4.7.0 is latest release from this branch (From OE-Core rev: 3f8fee75e598ad0994acc5da0a612e6eca4f35f6) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
25
meta/recipes-devtools/gcc/gcc-4.7/COLLECT_GCC_OPTIONS.patch
Normal file
25
meta/recipes-devtools/gcc/gcc-4.7/COLLECT_GCC_OPTIONS.patch
Normal file
@@ -0,0 +1,25 @@
|
||||
Upstream-Status: Pending
|
||||
|
||||
#This patck added --sysroot into COLLECT_GCC_OPTIONS which is used to
|
||||
#invoke collect2.
|
||||
|
||||
Index: gcc-4_7-branch/gcc/gcc.c
|
||||
===================================================================
|
||||
--- gcc-4_7-branch.orig/gcc/gcc.c 2012-04-10 10:37:49.487389409 -0700
|
||||
+++ gcc-4_7-branch/gcc/gcc.c 2012-04-10 10:38:50.831392259 -0700
|
||||
@@ -3995,6 +3995,15 @@
|
||||
sizeof ("COLLECT_GCC_OPTIONS=") - 1);
|
||||
|
||||
first_time = TRUE;
|
||||
+#ifdef HAVE_LD_SYSROOT
|
||||
+ if (target_system_root_changed && target_system_root)
|
||||
+ {
|
||||
+ obstack_grow (&collect_obstack, "'--sysroot=", sizeof("'--sysroot=")-1);
|
||||
+ obstack_grow (&collect_obstack, target_system_root,strlen(target_system_root));
|
||||
+ obstack_grow (&collect_obstack, "'", 1);
|
||||
+ first_time = FALSE;
|
||||
+ }
|
||||
+#endif
|
||||
for (i = 0; (int) i < n_switches; i++)
|
||||
{
|
||||
const char *const *args;
|
||||
Reference in New Issue
Block a user