This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] PR/14467


On Mac OS X 10.1.x c++filt3 is installed only if
GCC-3.x is installed. This patch replaces use of
c++filt3 with c++filt. c++filt is a sym link that
appropriately points to desired filter for the
system compiler.

Now bootstrap on Mac OS X 10.1 continues into stage1..

OK for GCC 3.3.4?
OK for GCC 3.4?
OK for mainline?

--
Devang

2003-04-05 Devang Patel <dpatel@apple.com>

* config/darwin.h (LINK_COMMAND_SPEC): Use c++filt instead of c++filt3.


Index: darwin.h =================================================================== RCS file: /cvs/gcc/gcc/gcc/config/darwin.h,v retrieving revision 1.43.2.2 diff -Idpatel.pbxuser -c -3 -p -r1.43.2.2 darwin.h *** darwin.h 8 Aug 2003 21:17:57 -0000 1.43.2.2 --- darwin.h 6 Apr 2004 00:00:20 -0000 *************** Boston, MA 02111-1307, USA. */ *** 192,198 **** %{!Zdynamiclib:%{!A:%{!nostdlib:%{!nostartfiles:%S}}}} \ %{L*} %(link_libgcc) %o %{!nostdlib:%{!nodefaultlibs:%G %L}} \ %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} %{F*} \ ! %{!--help:%{!no-c++filt|c++filt:| c++filt3 }} }}}}}}}}"

  /* Please keep the random linker options in alphabetical order (modulo
     'Z' and 'no' prefixes).  Options that can only go to one of libtool
--- 192,198 ----
      %{!Zdynamiclib:%{!A:%{!nostdlib:%{!nostartfiles:%S}}}} \
      %{L*} %(link_libgcc) %o %{!nostdlib:%{!nodefaultlibs:%G %L}} \
      %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} %{F*} \
!     %{!--help:%{!no-c++filt|c++filt:| c++filt }} }}}}}}}}"

  /* Please keep the random linker options in alphabetical order (modulo
     'Z' and 'no' prefixes).  Options that can only go to one of libtool


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]