public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* libg++
@ 1998-06-29 23:55 Daniel Bernstein
  1998-06-30 11:53 ` libg++ H.J. Lu
  1998-06-30 14:08 ` libg++ Manfred Hollstein
  0 siblings, 2 replies; 13+ messages in thread
From: Daniel Bernstein @ 1998-06-29 23:55 UTC (permalink / raw)
  To: egcs

If I want to install libg++ with egcs, do I have to put it in before
compiling egcs, or can it be added afterward?

Thanks..



^ permalink raw reply	[flat|nested] 13+ messages in thread
[parent not found: <Pine.SUN.3.95-heb-2.07.980629191358.564A-100000.cygnus.egcs@beitza.jct.ac.il>]
* libg++
@ 1998-01-20 14:54 Oleg Krivosheev
  1998-01-23 11:15 ` libg++ H.J. Lu
  0 siblings, 1 reply; 13+ messages in thread
From: Oleg Krivosheev @ 1998-01-20 14:54 UTC (permalink / raw)
  To: egcs

Hi,

can someone point out where is 
separate libg++ for egcs?

IMO, it's perfect Q&A for FAQ and
probably we should keep it (i.e. libg++)
in infrastructure dir.

just a thought...

regards

OK


^ permalink raw reply	[flat|nested] 13+ messages in thread
* libg++
@ 1997-12-02  9:23 Lee Iverson
  1997-12-02 13:14 ` libg++ Mumit Khan
  1997-12-02 18:18 ` libg++ H.J. Lu
  0 siblings, 2 replies; 13+ messages in thread
From: Lee Iverson @ 1997-12-02  9:23 UTC (permalink / raw)
  To: egcs

Is anyone working on reconstructing libg++ so that it will work with
egcs?  I realize that it is somewhat officially considered *obsolete*
but we have a bunch of legacy code that, until we get it converted,
depends critically on libg++.

-------------------------------------------------------------------------------
Lee Iverson     		SRI International
leei@ai.sri.com			333 Ravenswood Ave., Menlo Park CA 94025
http://www.ai.sri.com/~leei/	(650) 859-3307

^ permalink raw reply	[flat|nested] 13+ messages in thread
* egcs-970828 install
@ 1997-08-30 22:12 Weiwen Liu
  1997-08-30 22:12 ` libg++? Joe Buck
  0 siblings, 1 reply; 13+ messages in thread
From: Weiwen Liu @ 1997-08-30 22:12 UTC (permalink / raw)
  To: egcs

Hi,

The program "c++filt" is not installed by "make install" of egcs-970828.

^ permalink raw reply	[flat|nested] 13+ messages in thread
* Incorrect i960 linker config
@ 1997-08-30 12:00 Stephen Williams
  1997-08-30 21:24 ` libg++? Jason Merrill
  0 siblings, 1 reply; 13+ messages in thread
From: Stephen Williams @ 1997-08-30 12:00 UTC (permalink / raw)
  To: egcs

The LINK_SPEC doesn't deal with the -mjx and -mrp switches. Also,
ld handles not being given an architecture switch well enough by
looking at what its got. This very simply patch fixes the link spec
by adding the new Jx target types.

NOTE: I think I was the one who submitted the -mjx spec entries for the
assembler, so this is my error I'm correcting:-) (Joel, I'm suprised that
you missed this. I would have thought it would effect RTEMS/i960 links:-)

*** dist/egcs-970828/gcc/config/i960/i960.h     Mon Aug 11 08:57:28 1997
--- egcs-970828/gcc/config/i960/i960.h  Fri Aug 29 23:45:01 1997
***************
*** 81,87 ****
  #define LINK_SPEC \
        "%{mka:-AKA}%{mkb:-AKB}%{msa:-ASA}%{msb:-ASB}\
        %{mmc:-AMC}%{mca:-ACA}%{mcc:-ACC}%{mcf:-ACF}\
!       %{!mka:%{!mkb:%{!msa:%{!msb:%{!mmc:%{!mca:%{!mcc:%{!mcf:-AKB}}}}}}}}\
        %{mbout:-Fbout}%{mcoff:-Fcoff}\
        %{mlink-relax:-relax}"
  
--- 81,87 ----
  #define LINK_SPEC \
        "%{mka:-AKA}%{mkb:-AKB}%{msa:-ASA}%{msb:-ASB}\
        %{mmc:-AMC}%{mca:-ACA}%{mcc:-ACC}%{mcf:-ACF}\
!         %{mja:-AJX}%{mjd:-AJX}%{mjf:-AJX}%{mrp:-AJX}\
        %{mbout:-Fbout}%{mcoff:-Fcoff}\
        %{mlink-relax:-relax}"
  

-- 
Steve Williams
steve@icarus.com
steve@picturel.com

"The woods are lovely, dark and deep.  But I have promises to keep,
And lines to code before I sleep, And lines to code before I sleep."

^ permalink raw reply	[flat|nested] 13+ messages in thread
* libg++?
@ 1997-08-30 11:27 Chip Salzenberg
  0 siblings, 0 replies; 13+ messages in thread
From: Chip Salzenberg @ 1997-08-30 11:27 UTC (permalink / raw)
  To: egcs

Could someone please explain the relationships among libio, libstd++, and
libg++?  And given all the activity in C++, could someone explain why
libg++ hasn't been modified since 14 February 1997 (version 2.8.0b6)?
-- 
Chip Salzenberg          - a.k.a. -           
 (Roller coaster on camera:)  "Wow, this square quarter mile
    has unbelievably good light rail transit!"  // MST3K

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~1998-07-01  7:26 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-06-29 23:55 libg++ Daniel Bernstein
1998-06-30 11:53 ` libg++ H.J. Lu
1998-06-30 14:08 ` libg++ Manfred Hollstein
     [not found] <Pine.SUN.3.95-heb-2.07.980629191358.564A-100000.cygnus.egcs@beitza.jct.ac.il>
1998-06-30 19:49 ` libg++ Nathan Myers
1998-07-01  7:26   ` libg++ H.J. Lu
  -- strict thread matches above, loose matches on Subject: below --
1998-01-20 14:54 libg++ Oleg Krivosheev
1998-01-23 11:15 ` libg++ H.J. Lu
1997-12-02  9:23 libg++ Lee Iverson
1997-12-02 13:14 ` libg++ Mumit Khan
1997-12-02 18:18 ` libg++ H.J. Lu
1997-08-30 22:12 egcs-970828 install Weiwen Liu
1997-08-30 22:12 ` libg++? Joe Buck
1997-08-30 12:00 Incorrect i960 linker config Stephen Williams
1997-08-30 21:24 ` libg++? Jason Merrill
1997-08-30 11:27 libg++? Chip Salzenberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).