@ -0,0 +1,50 @@ |
|||||
|
# --- ROCK-COPYRIGHT-NOTE-BEGIN --- |
||||
|
# |
||||
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
||||
|
# Please add additional copyright information _after_ the line containing |
||||
|
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by |
||||
|
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text! |
||||
|
# |
||||
|
# ROCK Linux: rock-src/package/base/gcc/gcc41/auxbase.patch |
||||
|
# ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf |
||||
|
# |
||||
|
# This patch file is dual-licensed. It is available under the license the |
||||
|
# patched project is licensed under, as long as it is an OpenSource license |
||||
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
||||
|
# of the GNU General Public License as published by the Free Software |
||||
|
# Foundation; either version 2 of the License, or (at your option) any later |
||||
|
# version. |
||||
|
# |
||||
|
# --- ROCK-COPYRIGHT-NOTE-END --- |
||||
|
|
||||
|
|
||||
|
This fix is for passing -auxbase or -auxbase-strip thru the "gcc" driver |
||||
|
programs (e.g. 'gcc') to the backend compilers (e.g. 'cc1'). We will need |
||||
|
this for supporting feedback compilation using the ROCK toolchain... |
||||
|
|
||||
|
- Clifford <clifford@clifford.at> |
||||
|
|
||||
|
--- ./gcc/gcc.h.orig 2004-09-24 15:42:27.000000000 +0200
|
||||
|
+++ ./gcc/gcc.h 2004-09-24 15:43:24.000000000 +0200
|
||||
|
@@ -46,6 +46,7 @@
|
||||
|
(!strcmp (STR, "Tdata") || !strcmp (STR, "Ttext") \ |
||||
|
|| !strcmp (STR, "Tbss") || !strcmp (STR, "include") \ |
||||
|
|| !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \ |
||||
|
+ || !strcmp (STR, "auxbase") || !strcmp (STR, "auxbase-strip") \
|
||||
|
|| !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \ |
||||
|
|| !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \ |
||||
|
|| !strcmp (STR, "isystem") || !strcmp (STR, "-param") \ |
||||
|
--- ./gcc/gcc.c.orig 2004-09-24 15:44:36.000000000 +0200
|
||||
|
+++ ./gcc/gcc.c 2004-09-24 15:48:48.000000000 +0200
|
||||
|
@@ -788,9 +788,9 @@
|
||||
|
/* NB: This is shared amongst all front-ends. */ |
||||
|
static const char *cc1_options = |
||||
|
"%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\ |
||||
|
- %1 %{!Q:-quiet} -dumpbase %B %{d*} %{m*} %{a*}\
|
||||
|
+ %1 %{!Q:-quiet} -dumpbase %B %{d*} %{m*}\
|
||||
|
%{c|S:%{o*:-auxbase-strip %*}%{!o*:-auxbase %b}}%{!c:%{!S:-auxbase %b}}\ |
||||
|
- %{g*} %{O*} %{W*&pedantic*} %{w} %{std*&ansi&trigraphs}\
|
||||
|
+ %{a*} %{g*} %{O*} %{W*&pedantic*} %{w} %{std*&ansi&trigraphs}\
|
||||
|
%{v:-version} %{pg:-p} %{p} %{f*} %{undef}\ |
||||
|
%{Qn:-fno-ident} %{--help:--help}\ |
||||
|
%{--target-help:--target-help}\ |
@ -0,0 +1,39 @@ |
|||||
|
# --- ROCK-COPYRIGHT-NOTE-BEGIN --- |
||||
|
# |
||||
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
||||
|
# Please add additional copyright information _after_ the line containing |
||||
|
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by |
||||
|
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text! |
||||
|
# |
||||
|
# ROCK Linux: rock-src/package/base/gcc/gcc41/install_so.patch |
||||
|
# ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf |
||||
|
# |
||||
|
# This patch file is dual-licensed. It is available under the license the |
||||
|
# patched project is licensed under, as long as it is an OpenSource license |
||||
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
||||
|
# of the GNU General Public License as published by the Free Software |
||||
|
# Foundation; either version 2 of the License, or (at your option) any later |
||||
|
# version. |
||||
|
# |
||||
|
# --- ROCK-COPYRIGHT-NOTE-END --- |
||||
|
|
||||
|
--- ./install-sh.orig 2003-07-20 11:40:28.000000000 +0200
|
||||
|
+++ ./install-sh 2003-11-02 17:04:13.000000000 +0100
|
||||
|
@@ -279,8 +279,15 @@
|
||||
|
&& { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } && |
||||
|
|
||||
|
# Now rename the file to the real destination. |
||||
|
- { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \
|
||||
|
- || {
|
||||
|
+ { if echo $dstdir/$dstfile | grep -q 'lib/.*\.so' ; then
|
||||
|
+ $doit $mvcmd $dsttmp $dstdir/$dstfile
|
||||
|
+ rc=$?
|
||||
|
+ else
|
||||
|
+ $doit $rmcmd -f $dstdir/$dstfile &&
|
||||
|
+ $doit $mvcmd $dsttmp $dstdir/$dstfile
|
||||
|
+ rc=$?
|
||||
|
+ fi
|
||||
|
+ [ $rc -eq 0 ] || {
|
||||
|
# The rename failed, perhaps because mv can't rename something else |
||||
|
# to itself, or perhaps because mv is so ancient that it does not |
||||
|
# support -f. |
@ -0,0 +1,36 @@ |
|||||
|
# --- ROCK-COPYRIGHT-NOTE-BEGIN --- |
||||
|
# |
||||
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
||||
|
# Please add additional copyright information _after_ the line containing |
||||
|
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by |
||||
|
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text! |
||||
|
# |
||||
|
# ROCK Linux: rock-src/package/base/gcc/gcc41/no-install-libiberty.patch |
||||
|
# ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf |
||||
|
# |
||||
|
# This patch file is dual-licensed. It is available under the license the |
||||
|
# patched project is licensed under, as long as it is an OpenSource license |
||||
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
||||
|
# of the GNU General Public License as published by the Free Software |
||||
|
# Foundation; either version 2 of the License, or (at your option) any later |
||||
|
# version. |
||||
|
# |
||||
|
# --- ROCK-COPYRIGHT-NOTE-END --- |
||||
|
|
||||
|
--- ./libiberty/Makefile.in.orig 2003-03-23 06:16:03.000000000 -0400
|
||||
|
+++ ./libiberty/Makefile.in 2003-05-15 17:02:18.000000000 -0400
|
||||
|
@@ -342,10 +342,10 @@
|
||||
|
# since it will be passed the multilib flags. |
||||
|
MULTIOSDIR = `$(CC) $(LIBCFLAGS) -print-multi-os-directory` |
||||
|
install_to_libdir: all |
||||
|
- ${mkinstalldirs} $(DESTDIR)$(libdir)/$(MULTIOSDIR)
|
||||
|
- $(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)n
|
||||
|
- ( cd $(DESTDIR)$(libdir)/$(MULTIOSDIR) ; chmod 644 $(TARGETLIB)n ;$(RANLIB) $(TARGETLIB)n )
|
||||
|
- mv -f $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)n $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)
|
||||
|
+ #${mkinstalldirs} $(DESTDIR)$(libdir)/$(MULTIOSDIR)
|
||||
|
+ #$(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)n
|
||||
|
+ #( cd $(DESTDIR)$(libdir)/$(MULTIOSDIR) ; chmod 644 $(TARGETLIB)n ;$(RANLIB) $(TARGETLIB)n )
|
||||
|
+ #mv -f $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)n $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)
|
||||
|
if test -n "${target_header_dir}"; then \ |
||||
|
case "${target_header_dir}" in \ |
||||
|
/*) thd=${target_header_dir};; \ |
@ -0,0 +1,30 @@ |
|||||
|
# --- ROCK-COPYRIGHT-NOTE-BEGIN --- |
||||
|
# |
||||
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
||||
|
# Please add additional copyright information _after_ the line containing |
||||
|
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by |
||||
|
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text! |
||||
|
# |
||||
|
# ROCK Linux: rock-src/package/base/gcc/gcc41/no-install-zlib.patch |
||||
|
# ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf |
||||
|
# |
||||
|
# This patch file is dual-licensed. It is available under the license the |
||||
|
# patched project is licensed under, as long as it is an OpenSource license |
||||
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
||||
|
# of the GNU General Public License as published by the Free Software |
||||
|
# Foundation; either version 2 of the License, or (at your option) any later |
||||
|
# version. |
||||
|
# |
||||
|
# --- ROCK-COPYRIGHT-NOTE-END --- |
||||
|
|
||||
|
--- ./zlib/Makefile.in.orig 2002-11-25 21:28:45.000000000 +0200
|
||||
|
+++ ./zlib/Makefile.in 2003-01-25 15:39:06.000000000 +0200
|
||||
|
@@ -510,7 +510,7 @@
|
||||
|
for dir in "$(DESTDIR)$(toolexeclibdir)"; do \ |
||||
|
test -z "$$dir" || $(mkdir_p) "$$dir"; \ |
||||
|
done |
||||
|
-install: install-am
|
||||
|
+install:
|
||||
|
install-exec: install-exec-am |
||||
|
install-data: install-data-am |
||||
|
uninstall: uninstall-am |