public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* xm-alpha.h alloca patch
@ 1997-08-19 19:00 Richard Henderson
  1997-08-19 19:08 ` gcc installation Jeffrey A Law
  0 siblings, 1 reply; 22+ messages in thread
From: Richard Henderson @ 1997-08-19 19:00 UTC (permalink / raw)
  To: egcs

GCC & G77 do not correctly bootstrap due to redefinitions of alloca.


r~


Tue Aug 19 11:49:54 1997  Richard Henderson  <rth@cygnus.com>

	* config/alpha/xm-alpha.h: Do the right thing with __GNUC__ and alloca.


diff -rpc2 -x CVS egcs/config/alpha/xm-alpha.h egcs-work/config/alpha/xm-alpha.h
*** egcs/config/alpha/xm-alpha.h	Mon Aug 18 08:49:48 1997
--- egcs-work/config/alpha/xm-alpha.h	Mon Aug 18 12:14:18 1997
*************** Boston, MA 02111-1307, USA.  */
*** 42,50 ****
  #define	FATAL_EXIT_CODE		33
  
! /* If not compiled with GNU C, use the builtin alloca.  */
! #if !defined(__GNUC__) && !defined(_WIN32)
  #include <alloca.h>
  #else
  extern void *alloca ();
  #endif
  
--- 42,55 ----
  #define	FATAL_EXIT_CODE		33
  
! /* If compiled with GNU C, use the builtin alloca.  */
! #ifdef __GNUC__
! #undef alloca
! #define alloca  __builtin_alloca
! #else
! #ifndef _WIN32
  #include <alloca.h>
  #else
  extern void *alloca ();
+ #endif
  #endif
  

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

* Re: gcc installation
  1997-08-19 19:00 xm-alpha.h alloca patch Richard Henderson
@ 1997-08-19 19:08 ` Jeffrey A Law
  0 siblings, 0 replies; 22+ messages in thread
From: Jeffrey A Law @ 1997-08-19 19:08 UTC (permalink / raw)
  To: egcs

  In message <Pine.ULT.3.95.970819173626.27159C-100000@irz301.inf.tu-dresden.de
>you write:
  > is not a bug report for gcc itself. But can someone please tell me,
  > why (1) there will  be no configuration spec installed (on Linux
  > /usr/lib/gcc-lib/i586-pc-linux-gnulibc1/egcs-2.90.00/specs) and whether
Weird.  It's installed on other platforms.  I'm not aware of any
linux specific code which would cause specs not to get installed.

  > (2) g++ seems to be no longer supported (I know that it just calls gcc,
  > however I've installed both languages, c AND c++).
Similarly.

Where there any errors during the "make install"?  Did g++ and
the specs file get built in the object directory?


jeff

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

* gcc installation
       [not found] <200304300904.h3U94wX18945@anatolia.koeri.boun.edu.tr>
@ 2003-04-30 16:18 ` Gonca Orgulu
  0 siblings, 0 replies; 22+ messages in thread
From: Gonca Orgulu @ 2003-04-30 16:18 UTC (permalink / raw)
  To: gcc; +Cc: gonca

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1325 bytes --]

 
 
 Thank you for the information. I think that i completed configuration, but
 the second step "make bootstrap" gives error messages. I attached the log
 files to this message as a tar file. 
 
 Could you please check them?
 
 Gonca
 
 
 Hi,
 
 Gonca Orgulu wrote:
 > I am new for program installation and am not sys admin.  > I tried to understand the instructions, but i think that i did not > understand very well.
 > Probably, my problem for ld is related to the path definition. I am
 > running the program "configure" as root. While as root, the system
 > does not find ld command. Actually, i have link editor program which is in
 > a different path. I tried to give a path for the ld command in configure  > as below,
 >
 > ld='/usr/ccs/bin/ld'
 >
 > I am not sure i am doing correctly. 
 
 Hm, you don't need to run this as root.
 Here in my env I set the PATH pointing to the ccs/bin/ld. I use the 
 tcsh. This is what I put in my .tcshrc:
 
 setenv PATH /usr/local/bin:/usr/ccs/bin:/usr/bin:$PATH
 setenv CONFIG_SHELL /bin/ksh
 
 Then source this .tcshrc and configure the gcc to your needs.
 
 e.g, in a directory called objdir which is on the same level as the gcc-src.
 
 ../gcc/configure --prefix=<where to install>
 
 after configure completes, a make bootstrap should run through. 

 Andreas
 
 
 
 
 
 
 

[-- Attachment #2: Type: APPLICATION/octet-stream, Size: 12800 bytes --]

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

* Re: GCC Installation
  2002-10-11  9:48 GCC Installation Mini_Thyagarajan
  2002-10-11  9:55 ` Mini_Thyagarajan
@ 2002-10-11 11:19 ` Mike Stump
  1 sibling, 0 replies; 22+ messages in thread
From: Mike Stump @ 2002-10-11 11:19 UTC (permalink / raw)
  To: Mini_Thyagarajan; +Cc: gcc

Please see the www.cygwin.com site.  I suspect you'll get a faster 
answer asking on the cygwin mailing list.

On Friday, October 11, 2002, at 08:11 AM, Mini_Thyagarajan@hill-rom.com 
wrote:

>       I recently installed gcc in my machine.  I've got all the exe's 
> and
> cygwin.dll in the folder D:\program 
> files\gnu\arm\arm-unknownn-elf\bin.  I
> wrote a Hello.c program which resides in the same directory.  When I 
> tried
> to compile the program using 'gcc hello.c' command, I got the following
> error.
> gcc: Installation problem, cannot exec "cpp0": no such file or 
> directory.
>   I couldn't figure that out.  What does that mean?  What is the 
> solution?

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

* GCC Installation
  2002-10-11  9:48 GCC Installation Mini_Thyagarajan
@ 2002-10-11  9:55 ` Mini_Thyagarajan
  2002-10-11 11:19 ` Mike Stump
  1 sibling, 0 replies; 22+ messages in thread
From: Mini_Thyagarajan @ 2002-10-11  9:55 UTC (permalink / raw)
  To: gcc

Hi,
      I recently installed gcc in my machine.  I've got all the exe's and
cygwin.dll in the folder D:\program files\gnu\arm\arm-unknownn-elf\bin.  I
wrote a Hello.c program which resides in the same directory.  When I tried
to compile the program using 'gcc hello.c' command, I got the following
error.
gcc: Installation problem, cannot exec "cpp0": no such file or directory.
  I couldn't figure that out.  What does that mean?  What is the solution?
Please advise me.

Thanks in advance,

Mini Thyagarajan,
Development Process Engineer.


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

* GCC Installation
@ 2002-10-11  9:48 Mini_Thyagarajan
  2002-10-11  9:55 ` Mini_Thyagarajan
  2002-10-11 11:19 ` Mike Stump
  0 siblings, 2 replies; 22+ messages in thread
From: Mini_Thyagarajan @ 2002-10-11  9:48 UTC (permalink / raw)
  To: gcc

Hi,
      I recently installed gcc in my machine.  I've got all the exe's and
cygwin.dll in the folder D:\program files\gnu\arm\arm-unknownn-elf\bin.  I
wrote a Hello.c program which resides in the same directory.  When I tried
to compile the program using 'gcc hello.c' command, I got the following
error.
gcc: Installation problem, cannot exec "cpp0": no such file or directory.
  I couldn't figure that out.  What does that mean?  What is the solution?
Please advise me.

Thanks in advance,

Mini Thyagarajan,
Development Process Engineer.


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

* Re: gcc installation
  2002-05-22 14:49 gcc installation nicholas
@ 2002-05-22 15:30 ` Kelley Cook
  0 siblings, 0 replies; 22+ messages in thread
From: Kelley Cook @ 2002-05-22 15:30 UTC (permalink / raw)
  To: nicholas, gcc

 >I am trying to install GCC 3.0.4 but as I don't have any earlier
 >version of GCC or any C compiler installed on my system my problem
 >is fairly obvious.  I have looked in your Binaries directory and
 >have found nothing that helps me as I am running OS X 10.1.4.
 >
 >Where can I find a pre-compiled C compiler and how do I set my
 >environment variable CC to that compiler?
 >
 >thanks
 >
 >nicholas

GCC 2.95.3 for Mac OS X comes on the Developer Tools CD, which came with 
10.1

Otherwise the compiler is available from

http://developer.apple.com/tools/compilers.html

You'll need to sign up for a no-cost online membership in the ADC.

Kelley Cook

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

* gcc installation
@ 2002-05-22 14:49 nicholas
  2002-05-22 15:30 ` Kelley Cook
  0 siblings, 1 reply; 22+ messages in thread
From: nicholas @ 2002-05-22 14:49 UTC (permalink / raw)
  To: gcc

Hey,

I am trying to install GCC 3.0.4 but as I don't have any earlier version 
of GCC or any C compiler installed on my system my problem is fairly 
obvious.  I have looked in your Binaries directory and have found 
nothing that helps me as I am running OS X 10.1.4.

Where can I find a pre-compiled C compiler and how do I set my 
environment variable CC to that compiler?

thanks

nicholas

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

* Re: GCC Installation
  2002-04-06 22:22 GCC Installation Rabea Husseis
@ 2002-04-06 22:23 ` Bobby McNulty Junior
  0 siblings, 0 replies; 22+ messages in thread
From: Bobby McNulty Junior @ 2002-04-06 22:23 UTC (permalink / raw)
  To: Rabea Husseis, gcc

You are out of drive space.
I think.

----- Original Message ----- 
From: "Rabea Husseis" <rhusseis@yahoo.com>
To: <gcc@gcc.gnu.org>
Sent: Sunday, April 07, 2002 12:06 AM
Subject: GCC Installation


> Hello...
> 
> I got the blw error every time I try to install gcc
> package:
> 
> 
> #pkgadd -d gcc-2.95.3-sol7-sparc-local
> 
> The following packages are available:
> 1 SMCgcc gcc
> (sparc) 2.95.3
> 
> Select package(s) you wish to process (or 'all' to
> process
> all packages). (default: all) [?,??,q]: 1
> 
> Processing package instance <SMCgcc> from
> </gcc-2.95.3-sol7-sparc-local>
> 
> gcc
> (sparc) 2.95.3
> cpio: Cannot write
> "reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/cc1obj",
> errno
> 28, No space left on device
> cpio: Cannot write
> "reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/cc1plus",
> errn
> o 28, No space left on device
> cpio: Cannot write
> "reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/chillrt0.o",
> e
> rrno 28, No space left on device
> cpio: Cannot write
> "reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/collect2",
> err
> no 28, No space left on device
> cpio: Cannot write
> "reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/cpp0",
> errno 2
> 8, No space left on device
> cpio: Cannot write
> "reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/crtbegin.o",
> e
> rrno 28, No space left on device
> cpio: Cannot write
> "reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/f771",
> errno 2
> 8, No space left on device
> cpio: Cannot write
> "reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/gmon.o",
> errno
> 28, No space left on device
> cpio: Cannot write
> "reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/include/assert
> .h", errno 28, No space left on device
> cpio: Cannot write "
> 
> 
> 
> pkgadd: ERROR: attempt to process datastream failed
> - process </usr/bin/cpio -icdumD -C 512> failed, exit
> code 95
> pkgadd: ERROR: unable to unpack datastream
> 
> Installation of <SMCgcc> failed (internal error).
> No changes were made to the system.
> #
> 
> Can u pls advise how I can over come this problem? I
> alrady tried to install "gcc-3.0.3-sol7-sparc-local"
> but still the same.
> 
> Thanx
> 
> Rabea 
> 
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Tax Center - online filing with TurboTax
> http://taxes.yahoo.com/


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

* GCC Installation
@ 2002-04-06 22:22 Rabea Husseis
  2002-04-06 22:23 ` Bobby McNulty Junior
  0 siblings, 1 reply; 22+ messages in thread
From: Rabea Husseis @ 2002-04-06 22:22 UTC (permalink / raw)
  To: gcc

Hello...

I got the blw error every time I try to install gcc
package:


#pkgadd -d gcc-2.95.3-sol7-sparc-local

The following packages are available:
1 SMCgcc gcc
(sparc) 2.95.3

Select package(s) you wish to process (or 'all' to
process
all packages). (default: all) [?,??,q]: 1

Processing package instance <SMCgcc> from
</gcc-2.95.3-sol7-sparc-local>

gcc
(sparc) 2.95.3
cpio: Cannot write
"reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/cc1obj",
errno
28, No space left on device
cpio: Cannot write
"reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/cc1plus",
errn
o 28, No space left on device
cpio: Cannot write
"reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/chillrt0.o",
e
rrno 28, No space left on device
cpio: Cannot write
"reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/collect2",
err
no 28, No space left on device
cpio: Cannot write
"reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/cpp0",
errno 2
8, No space left on device
cpio: Cannot write
"reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/crtbegin.o",
e
rrno 28, No space left on device
cpio: Cannot write
"reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/f771",
errno 2
8, No space left on device
cpio: Cannot write
"reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/gmon.o",
errno
28, No space left on device
cpio: Cannot write
"reloc/lib/gcc-lib/sparc-sun-solaris2.7/2.95.3/include/assert
.h", errno 28, No space left on device
cpio: Cannot write "



pkgadd: ERROR: attempt to process datastream failed
- process </usr/bin/cpio -icdumD -C 512> failed, exit
code 95
pkgadd: ERROR: unable to unpack datastream

Installation of <SMCgcc> failed (internal error).
No changes were made to the system.
#

Can u pls advise how I can over come this problem? I
alrady tried to install "gcc-3.0.3-sol7-sparc-local"
but still the same.

Thanx

Rabea 

__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

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

* Re: gcc installation
  2002-01-17 11:58 gcc installation Justin R. Gortner
@ 2002-01-17 12:14 ` Andrea 'Fyre Wyzard' Bocci
  0 siblings, 0 replies; 22+ messages in thread
From: Andrea 'Fyre Wyzard' Bocci @ 2002-01-17 12:14 UTC (permalink / raw)
  To: Justin R. Gortner, gcc

At 13.36 17/01/2002 (GMT -0800), Justin R. Gortner wrote:
>GCC Team,
>
>I'm not sure if you answer these types of question via e-mail, but here it
>goes anyhow; I just installed Mandrake Linux on my computer. It has GCC on
>it now but I need to update it. I downloaded and uncompressed
>gcc-g++2.95.2.tar.gz, but I have no idea how to update the existing gcc with
>these files. If you could just give me a set of instructions to a newbie it
>would really be a great help! Thanks,
>
>Justin R. Gortner of Virginia Tech

You're best option would be to download the RPM packages for it - they are 
much easier to install and update.
You can get them from, eg., http://rpmfind.net.
Just search gcc, gcc-g++, and any other packages you might need. Then pick 
which version you like (for Mandrake).

If you really want to update from the sources, you need to download also 
gcc-2.95.2.tar.gz, and read the instructions at http://gcc.gnu.org/install/.

HTH
fwyzard

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

* gcc installation
@ 2002-01-17 11:58 Justin R. Gortner
  2002-01-17 12:14 ` Andrea 'Fyre Wyzard' Bocci
  0 siblings, 1 reply; 22+ messages in thread
From: Justin R. Gortner @ 2002-01-17 11:58 UTC (permalink / raw)
  To: gcc

GCC Team,

I'm not sure if you answer these types of question via e-mail, but here it
goes anyhow; I just installed Mandrake Linux on my computer. It has GCC on
it now but I need to update it. I downloaded and uncompressed
gcc-g++2.95.2.tar.gz, but I have no idea how to update the existing gcc with
these files. If you could just give me a set of instructions to a newbie it
would really be a great help! Thanks,

Justin R. Gortner of Virginia Tech

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

* RE: gcc installation
  2001-06-05  9:46 Radisa Maksimovic
  2001-06-05 11:05 ` Joe Buck
@ 2001-06-06  3:26 ` Robert McNulty Junior
  1 sibling, 0 replies; 22+ messages in thread
From: Robert McNulty Junior @ 2001-06-06  3:26 UTC (permalink / raw)
  To: marirad, gcc

CC=gcc ../name-of-directory/configure

-----Original Message-----
From: gcc-owner@gcc.gnu.org [ mailto:gcc-owner@gcc.gnu.org]On Behalf Of
Radisa Maksimovic
Sent: Tuesday, June 05, 2001 11:50 AM
To: gcc@gcc.gnu.org
Subject: gcc installation


Hi;
I downloaded the recompiled version of gcc-2.95.3 for Solaris8 Intel but
can't
run srcdir/configure because don't know which value to set for the
variable CC.
I get this message: "The command 'cc -o conftest -g conftest.c' failed".

"You must set the environment variable CC to a working compiler".
Sorry but I'm new at this, am trying to learn C++ by myself.
Your help would be highly appreciated.
Thank you.

Carmen Lacassi

_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


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

* Re: gcc installation
  2001-06-05  9:46 Radisa Maksimovic
@ 2001-06-05 11:05 ` Joe Buck
  2001-06-06  3:26 ` Robert McNulty Junior
  1 sibling, 0 replies; 22+ messages in thread
From: Joe Buck @ 2001-06-05 11:05 UTC (permalink / raw)
  To: marirad; +Cc: gcc

> I downloaded the recompiled version of gcc-2.95.3 for Solaris8 Intel but
> can't
> run srcdir/configure because don't know which value to set for the
> variable CC.

You can't build the compiler from source if your machine does not already
have a C compiler.  If you have no compiler you need to install
precompiled binaries instead.

For Solaris, try http://www.sunfreeware.com/ .

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

* gcc installation
@ 2001-06-05  9:46 Radisa Maksimovic
  2001-06-05 11:05 ` Joe Buck
  2001-06-06  3:26 ` Robert McNulty Junior
  0 siblings, 2 replies; 22+ messages in thread
From: Radisa Maksimovic @ 2001-06-05  9:46 UTC (permalink / raw)
  To: gcc

Hi;
I downloaded the recompiled version of gcc-2.95.3 for Solaris8 Intel but
can't
run srcdir/configure because don't know which value to set for the
variable CC.
I get this message: "The command 'cc -o conftest -g conftest.c' failed".

"You must set the environment variable CC to a working compiler".
Sorry but I'm new at this, am trying to learn C++ by myself.
Your help would be highly appreciated.
Thank you.

Carmen Lacassi

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

* Re: gcc installation
  2000-11-13  4:34 michal
@ 2000-11-13 20:04 ` Alexandre Oliva
  0 siblings, 0 replies; 22+ messages in thread
From: Alexandre Oliva @ 2000-11-13 20:04 UTC (permalink / raw)
  To: michal; +Cc: gcc

On Nov 13, 2000, michal <michal017@yahoo.com> wrote:

> Hi.. I have a problem installing gcc on a Alpha
> machine with Tru64 Unix.

You failed to mention it is Tru64 v5.0.  That was released after GCC
2.95.2, so GCC 2.95.2 doesn't support it.  IIRC, it's just a minor
glitch in gcc/configure{,.in} that detects osf4.* but not 5.*, and
adjusting it to match 5.* is enough.

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me

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

* gcc installation
@ 2000-11-13  4:34 michal
  2000-11-13 20:04 ` Alexandre Oliva
  0 siblings, 1 reply; 22+ messages in thread
From: michal @ 2000-11-13  4:34 UTC (permalink / raw)
  To: gcc

Hi.. I have a problem installing gcc on a Alpha
machine with Tru64 Unix.
I first run ./configure which seems to be OK, it
creates the Makefile.  Then I run Make which runs with
a few warnings and halts on the linking part with:
ld:
Unresolved:
ASM_FILE_START
error..
What should I do?
thanks
michael

__________________________________________________
Do You Yahoo!?
Yahoo! Calendar - Get organized for the holidays!
http://calendar.yahoo.com/

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

* GCC installation
@ 2000-02-14  2:52 Salvatore Sciortino
  0 siblings, 0 replies; 22+ messages in thread
From: Salvatore Sciortino @ 2000-02-14  2:52 UTC (permalink / raw)
  To: gcc

I have successfully installed 
the complete gcc-2.95.2 under alphaev56-dec-osf4.0f

Regards
S. Sciortino

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

* GCC Installation
@ 2000-01-08 14:42 Deb, A. (Anindya)
  0 siblings, 0 replies; 22+ messages in thread
From: Deb, A. (Anindya) @ 2000-01-08 14:42 UTC (permalink / raw)
  To: gcc

I want to instal the gcc c and preferably, c++ compilers on my SGI
workstation
running Irix6.5 OS. I have downloaded a file  "gcc-2.95.2.tar.gz" from
the website " ftp://gcc.gnu.org/pub/gcc/releases/index.html " (full
distribution option). Where can I find clear guidelines (steps) on
installation? Also, have I downloaded the correct file? 

Thank you very much. 
 
Regards,

Anindya Deb.
E-Mail: adeb@ford.com

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

* Re: gcc installation
  1997-08-21 16:02 mdbench for g77 & f2c+gcc Furio Ercolessi
@ 1997-08-21 16:10 ` Jeffrey A Law
  0 siblings, 0 replies; 22+ messages in thread
From: Jeffrey A Law @ 1997-08-21 16:10 UTC (permalink / raw)
  To: egcs

  In message <Pine.ULT.3.95.970821091447.4653A-100000@irz301.inf.tu-dresden.de>
you write:
  > I've installed it on another machine now, and the problem with specs has
  > been going away. However, g++ hsn't been installed again. It also
  > wasn't built in the make directory. But explicitly typing 'make g++'
  > goes well ... When I've installed Cygnus's latest release from April this
  > wouldn't happen. So I don't know whats wrong there.
OK.  I'll look into it further.

jeff

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

* Re: gcc installation
  1997-08-21  6:32 f/runtime configure for x-builds? Mumit Khan
@ 1997-08-21  8:00 ` Thomas Weise
  0 siblings, 0 replies; 22+ messages in thread
From: Thomas Weise @ 1997-08-21  8:00 UTC (permalink / raw)
  To: egcs

I've installed it on another machine now, and the problem with specs has
been going away. However, g++ hsn't been installed again. It also
wasn't built in the make directory. But explicitly typing 'make g++'
goes well ... When I've installed Cygnus's latest release from April this
wouldn't happen. So I don't know whats wrong there.

Thomas Weise, http://www.inf.tu-dresden.de/~tw4
Dresden University of Technology, Department of Computer Science  

On Tue, 19 Aug 1997, Jeffrey A Law wrote:

>   In message <Pine.ULT.3.95.970819173626.27159C-100000@irz301.inf.tu-dresden.de
> >you write:
>   > is not a bug report for gcc itself. But can someone please tell me,
>   > why (1) there will  be no configuration spec installed (on Linux
>   > /usr/lib/gcc-lib/i586-pc-linux-gnulibc1/egcs-2.90.00/specs) and whether
> Weird.  It's installed on other platforms.  I'm not aware of any
> linux specific code which would cause specs not to get installed.
> 
>   > (2) g++ seems to be no longer supported (I know that it just calls gcc,
>   > however I've installed both languages, c AND c++).
> Similarly.
> 
> Where there any errors during the "make install"?  Did g++ and
> the specs file get built in the object directory?
> 
> 
> jeff
> 

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

* gcc installation
  1997-08-19 16:06 Minor SS issue Peter Seebach
@ 1997-08-19 17:54 ` Thomas Weise
  0 siblings, 0 replies; 22+ messages in thread
From: Thomas Weise @ 1997-08-19 17:54 UTC (permalink / raw)
  To: egcs

Hi,

so far I've installed snapshot egcs-ss-970814 successfully, and this
is not a bug report for gcc itself. But can someone please tell me,
why (1) there will  be no configuration spec installed (on Linux
/usr/lib/gcc-lib/i586-pc-linux-gnulibc1/egcs-2.90.00/specs) and whether
(2) g++ seems to be no longer supported (I know that it just calls gcc,
however I've installed both languages, c AND c++).

Apart from this I'm really impressed. All  of the C++ bugs I've had on my
list have been fixed (and there were a few). I'm wondering why this
version shouldn't be better than the broken 2.7.2 (at least some FSF
people might belief this..)

Thomas.

Thomas Weise, http://www.inf.tu-dresden.de/~tw4
Dresden University of Technology, Department of Computer Science  

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

end of thread, other threads:[~2003-04-30 10:01 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-08-19 19:00 xm-alpha.h alloca patch Richard Henderson
1997-08-19 19:08 ` gcc installation Jeffrey A Law
     [not found] <200304300904.h3U94wX18945@anatolia.koeri.boun.edu.tr>
2003-04-30 16:18 ` Gonca Orgulu
  -- strict thread matches above, loose matches on Subject: below --
2002-10-11  9:48 GCC Installation Mini_Thyagarajan
2002-10-11  9:55 ` Mini_Thyagarajan
2002-10-11 11:19 ` Mike Stump
2002-05-22 14:49 gcc installation nicholas
2002-05-22 15:30 ` Kelley Cook
2002-04-06 22:22 GCC Installation Rabea Husseis
2002-04-06 22:23 ` Bobby McNulty Junior
2002-01-17 11:58 gcc installation Justin R. Gortner
2002-01-17 12:14 ` Andrea 'Fyre Wyzard' Bocci
2001-06-05  9:46 Radisa Maksimovic
2001-06-05 11:05 ` Joe Buck
2001-06-06  3:26 ` Robert McNulty Junior
2000-11-13  4:34 michal
2000-11-13 20:04 ` Alexandre Oliva
2000-02-14  2:52 GCC installation Salvatore Sciortino
2000-01-08 14:42 GCC Installation Deb, A. (Anindya)
1997-08-21 16:02 mdbench for g77 & f2c+gcc Furio Ercolessi
1997-08-21 16:10 ` gcc installation Jeffrey A Law
1997-08-21  6:32 f/runtime configure for x-builds? Mumit Khan
1997-08-21  8:00 ` gcc installation Thomas Weise
1997-08-19 16:06 Minor SS issue Peter Seebach
1997-08-19 17:54 ` gcc installation Thomas Weise

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).