public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/12833] New: SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory
@ 2003-10-29 22:32 gcc-bug at vogtner dot de
  2003-10-30  1:20 ` [Bug bootstrap/12833] " wilson at specifixinc dot com
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: gcc-bug at vogtner dot de @ 2003-10-29 22:32 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12833

           Summary: SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No
                    such file or directory
           Product: gcc
           Version: 3.3.2
            Status: UNCONFIRMED
          Severity: critical
          Priority: P2
         Component: bootstrap
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: gcc-bug at vogtner dot de
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu

make bootstrap fails with
:
make CC=" stage1/xgcc -Bstage1/
-B/usr5/xhome/softw1/install-3.3.2/i686-pc-linux-gnu/bin/" \
         STAGE_PREFIX=stage1/ \
         ADAC="\$(CC)" AR_FOR_TARGET="ar" RANLIB_FOR_TARGET="ranlib" CFLAGS="-g
-O2" LDFLAGS="" WARN_CFLAGS="\$(GCC_WARN_CFLAGS)" STRICT_WARN="-Wtraditional
-pedantic -Wno-long-long" libdir=/usr5/xhome/softw1/install-3.3.2/lib
LANGUAGES="c gcov c++ f77 java objc" MAKEOVERRIDES= OUTPUT_OPTION="-o \$@"
make[2]: Entering directory `/usr5/xhome/softw1/build/objdir-gcc-3.3.2/gcc'
./gengenrtl -h > tmp-genrtl.h
/bin/sh: ./gengenrtl: No such file or directory
make[2]: *** [s-genrtl] Error 127
make[2]: Leaving directory `/usr5/xhome/softw1/build/objdir-gcc-3.3.2/gcc'
make[1]: *** [stage2_build] Error 2
make[1]: Leaving directory `/usr5/xhome/softw1/build/objdir-gcc-3.3.2/gcc'
make: *** [bootstrap] Error 2

=== How it was prepared: ===

mkdir /usr5/xhome/softw1/build
cd usr5/xhome/softw1/build
tar xfz gcc-3.3.2.tar.gz 
cd gcc-3.3.2
tar xfz ../gdb-6.0.tar.gz 
tar xfz ../binutils-2.14.tar.gz 
tar xfz ../bison-1.875.tar.gz 
tar xfz ../autoconf-2.57.tar.gz 
tar xfz ../texinfo-4.6.tar.gz           *)
tar xfz ../automake-1.7.8.tar.gz 
(symlinking from $PACKET-$VERSION where $PACKET is gdb, binutils,
..., automake)
cd ..
mkdir objdir-gcc-3.3.2
cd objdir-gcc-3.3.2
../gcc-3.3.2/configure \
   --prefix=/usr5/xhome/softw1/install-3.3.2 \
   --enable-shared \
   --enable-threads
make bootstrap

*) during the bootstrap process a texinfo.txi could not be compiled,
   since make does not use the new makeinfo but the old one instead.
   As a workaround I have manually compiled this file with the new
   makeinfo


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

* [Bug bootstrap/12833] SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory
  2003-10-29 22:32 [Bug bootstrap/12833] New: SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory gcc-bug at vogtner dot de
@ 2003-10-30  1:20 ` wilson at specifixinc dot com
  2003-10-30  4:51 ` pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: wilson at specifixinc dot com @ 2003-10-30  1:20 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12833



------- Additional Comments From wilson at specifixinc dot com  2003-10-30 01:00 -------
Subject: Re:  New: SuSE 7.3: gcc 3.3.2 bootstrap failure:
 ./gengenrtl: No such file or directory

gcc-bug at vogtner dot de wrote:
> ./gengenrtl -h > tmp-genrtl.h
> /bin/sh: ./gengenrtl: No such file or directory

This usually means that the file specifies an interpreter, and the shell 
can not find the interpreter program.

For a shell script, the interpreter is specified as a #! comment on the 
first line.  You can get the same error from a shell script like this
	#!/foo/bar
	exit 0

For an ELF file, the interpreter is specified by the INTERP program 
header.  It is usually the dynamic linker (ld.so).  On my system, it is 
/lib/ld-linux.so.2.  You can see the name of this file by using
	readelf -l gengenrtl
I suspect this is pointing at a file that does not exist on your system. 
  It is hard to say why the file is missing though.  This should only be 
a problem if you have a bad glibc version installed, or maybe a bad 
glibc install, but both of those are pretty unlikely.


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

* [Bug bootstrap/12833] SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory
  2003-10-29 22:32 [Bug bootstrap/12833] New: SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory gcc-bug at vogtner dot de
  2003-10-30  1:20 ` [Bug bootstrap/12833] " wilson at specifixinc dot com
@ 2003-10-30  4:51 ` pinskia at gcc dot gnu dot org
  2003-10-30  6:09 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-10-30  4:51 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12833


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING


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

* [Bug bootstrap/12833] SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory
  2003-10-29 22:32 [Bug bootstrap/12833] New: SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory gcc-bug at vogtner dot de
  2003-10-30  1:20 ` [Bug bootstrap/12833] " wilson at specifixinc dot com
  2003-10-30  4:51 ` pinskia at gcc dot gnu dot org
@ 2003-10-30  6:09 ` pinskia at gcc dot gnu dot org
  2003-10-30  8:16 ` gcc-bug at vogtner dot de
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-10-30  6:09 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12833


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|critical                    |normal


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

* [Bug bootstrap/12833] SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory
  2003-10-29 22:32 [Bug bootstrap/12833] New: SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory gcc-bug at vogtner dot de
                   ` (2 preceding siblings ...)
  2003-10-30  6:09 ` pinskia at gcc dot gnu dot org
@ 2003-10-30  8:16 ` gcc-bug at vogtner dot de
  2003-10-30  8:28 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gcc-bug at vogtner dot de @ 2003-10-30  8:16 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12833



------- Additional Comments From gcc-bug at vogtner dot de  2003-10-30 08:04 -------
ACK. You are entirely right. I could successfully built GCC 3.3.2
according to my previoulsy given configuration "from scratch".

Just for the records:

(1) SuSE 7.3 comes with autoconf 2.52. GCC's configuration stops
    since this version is too old. Workaround:
    - step into autoconf directory in build dir
    - make, make install
    - prepend PATH with the DESTINATION_DIR/bin directory
    - run configure again

(2) make stops in texinfo subdir trying to translate texinfo.txi,
    cause make uses system-installed makeinfo (which on SuSE 7.3
    is version 4.0). Workaround:
    put new makeinfo into DESTINATION_DIR/bin directory and
    run make bootstrap again.
  
(3) surprisingly ada ist not built by default with my configuration.
    will try again with --enable-languages=ada c++ f77 java"


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

* [Bug bootstrap/12833] SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory
  2003-10-29 22:32 [Bug bootstrap/12833] New: SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory gcc-bug at vogtner dot de
                   ` (3 preceding siblings ...)
  2003-10-30  8:16 ` gcc-bug at vogtner dot de
@ 2003-10-30  8:28 ` pinskia at gcc dot gnu dot org
  2003-11-03 20:27 ` gcc-bug at vogtner dot de
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-10-30  8:28 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12833


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
         Resolution|                            |WORKSFORME


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-10-30 08:16 -------
Actually the problem with autoconf is that GCC (at least with 3.3.2) uses an older version of 
autoconf, 2.13 so rebuilding configure with autoconf is going to cause some errors.
To get Ada to build you need an Ada compiler already.
Closing as you could build a compiler.
Note also build all at once is usually not support when not doing a cross-compiler.


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

* [Bug bootstrap/12833] SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory
  2003-10-29 22:32 [Bug bootstrap/12833] New: SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory gcc-bug at vogtner dot de
                   ` (4 preceding siblings ...)
  2003-10-30  8:28 ` pinskia at gcc dot gnu dot org
@ 2003-11-03 20:27 ` gcc-bug at vogtner dot de
  2003-11-03 20:31 ` pinskia at gcc dot gnu dot org
  2003-11-03 20:36 ` gcc-bug at vogtner dot de
  7 siblings, 0 replies; 9+ messages in thread
From: gcc-bug at vogtner dot de @ 2003-11-03 20:27 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12833



------- Additional Comments From gcc-bug at vogtner dot de  2003-11-03 20:27 -------
You probably mean *binutils* 2.13 (not autoconf).


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

* [Bug bootstrap/12833] SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory
  2003-10-29 22:32 [Bug bootstrap/12833] New: SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory gcc-bug at vogtner dot de
                   ` (5 preceding siblings ...)
  2003-11-03 20:27 ` gcc-bug at vogtner dot de
@ 2003-11-03 20:31 ` pinskia at gcc dot gnu dot org
  2003-11-03 20:36 ` gcc-bug at vogtner dot de
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-11-03 20:31 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12833



------- Additional Comments From pinskia at gcc dot gnu dot org  2003-11-03 20:31 -------
No I mean autoconf version 2.13, see <http://gcc.gnu.org/install/prerequisites.html>.


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

* [Bug bootstrap/12833] SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory
  2003-10-29 22:32 [Bug bootstrap/12833] New: SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory gcc-bug at vogtner dot de
                   ` (6 preceding siblings ...)
  2003-11-03 20:31 ` pinskia at gcc dot gnu dot org
@ 2003-11-03 20:36 ` gcc-bug at vogtner dot de
  7 siblings, 0 replies; 9+ messages in thread
From: gcc-bug at vogtner dot de @ 2003-11-03 20:36 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12833



------- Additional Comments From gcc-bug at vogtner dot de  2003-11-03 20:36 -------
Sorry, my fault. I found it. Was slightly confused by the current
version number 2.57 and that of binutils (currently 2.14).
Fortunately on my SuSE 7.3 has autoconf 2.13 :-)


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

end of thread, other threads:[~2003-11-03 20:36 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-29 22:32 [Bug bootstrap/12833] New: SuSE 7.3: gcc 3.3.2 bootstrap failure: ./gengenrtl: No such file or directory gcc-bug at vogtner dot de
2003-10-30  1:20 ` [Bug bootstrap/12833] " wilson at specifixinc dot com
2003-10-30  4:51 ` pinskia at gcc dot gnu dot org
2003-10-30  6:09 ` pinskia at gcc dot gnu dot org
2003-10-30  8:16 ` gcc-bug at vogtner dot de
2003-10-30  8:28 ` pinskia at gcc dot gnu dot org
2003-11-03 20:27 ` gcc-bug at vogtner dot de
2003-11-03 20:31 ` pinskia at gcc dot gnu dot org
2003-11-03 20:36 ` gcc-bug at vogtner dot de

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