mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-27 11:13:24 +02:00
34 lines
1.4 KiB
Diff
34 lines
1.4 KiB
Diff
Submitted By: Jeremy Huntwork (jhuntwork AT linuxfromscratch DOT org)
|
|
Date: 2008-12-05
|
|
Initial Package Version: 4.3.2
|
|
Upstream Status: See below.
|
|
Origin: DIY Linux, See below.
|
|
Description: Original patch follows:
|
|
|
|
# DIY Linux Patch
|
|
Date: 2008-09-09
|
|
Author: Refer Origin.
|
|
Origin: Partial revert of http://gcc.gnu.org/ml/gcc-cvs/2006-11/msg00416.html
|
|
Maker: Greg Schafer <gschafer@zip.com.au>
|
|
Upstream Status: Not applicable. Tweak only for Temptools phase GCC-Pass2.
|
|
Description: Partially revert GCC driver to pre-GCC-4.3 state to allow startfiles to be
|
|
found in $prefix when GCC is configured for a non-standard prefix eg: /temptools. Full
|
|
background info in thread starting here: http://gcc.gnu.org/ml/gcc/2008-03/msg00095.html
|
|
and GCC bugzilla here: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35532
|
|
|
|
diff -Naur gcc-4.3.0-RC-20080222.orig/gcc/gcc.c gcc-4.3.0-RC-20080222/gcc/gcc.c
|
|
--- gcc-4.3.0-RC-20080222.orig/gcc/gcc.c 2008-01-24 18:57:12.000000000 +0000
|
|
+++ gcc-4.3.0-RC-20080222/gcc/gcc.c 2008-03-02 06:07:36.000000000 +0000
|
|
@@ -6370,6 +6370,11 @@
|
|
machine_suffix,
|
|
standard_startfile_prefix, NULL),
|
|
NULL, PREFIX_PRIORITY_LAST, 0, 1);
|
|
+ add_prefix (&startfile_prefixes,
|
|
+ concat (standard_exec_prefix,
|
|
+ machine_suffix,
|
|
+ standard_startfile_prefix, NULL),
|
|
+ NULL, PREFIX_PRIORITY_LAST, 0, 1);
|
|
}
|
|
|
|
/* Sysrooted prefixes are relocated because target_system_root is
|