public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* Problems building gcc
@ 2024-02-06 17:36 T Rex
  2024-02-06 19:22 ` Jonathan Wakely
  0 siblings, 1 reply; 12+ messages in thread
From: T Rex @ 2024-02-06 17:36 UTC (permalink / raw)
  To: gcc-help

[-- Attachment #1: Type: text/plain, Size: 760 bytes --]

Good morning everyone,

I am compiling gcc-13.2 with the following configuration,

./configure --disable-multilib --enable-languages=c,c++ --enable-multiarch
--host=x86_64-pc-linux-gnu --target=x86_64-pc-linux-gnu
--enable-deterministic-archives --disable-bootstrap --enable-default-pie
--enable-default-ssp --disable-libssp --enable-linker-build-id
--disable-libstdcxx-filesystem-ts --enable-shared
--prefix=/home/runner/work/gcc/gcc/builds

and the process is successful. But when reviewing the include directory, it
is empty, with only the g++ directory and its contents, I would like all
the files necessary for the compiler to be in the folder. I don't know if
it's a configuration error or something additional needs to be done.

(this is a translation)

^ permalink raw reply	[flat|nested] 12+ messages in thread
* Problems building gcc
@ 2016-07-27  8:17 Douglas Houston
  2016-07-27  8:22 ` Jonathan Wakely
  2016-07-27 21:59 ` Brian Drummond
  0 siblings, 2 replies; 12+ messages in thread
From: Douglas Houston @ 2016-07-27  8:17 UTC (permalink / raw)
  To: gcc-help

Hi all,

I'm having some trouble installing the latest gcc (which I need to  
build another program called Gromacs).

I am on Scientific Linux release 6.8 (Carbon) (kernel  
2.6.32-573.3.1.el6.x86_64), trying to install gcc-5.4.0.

After installing the latest gmp, mpfr and mpc, I create a separate  
objdir build/install directory as recommended. In there, as root, I run:


../gcc-5.4.0/configure


Which fails with:


/usr/bin/ld: crt1.o: No such file: No such file or directory
collect2: ld returned 1 exit status
configure: error: I suspect your system does not have 32-bit  
developement librar
ies (libc and headers). If you have them, rerun configure with  
--enable-multilib
. If you do not have them, and want to build a 64-bit-only compiler,  
rerun confi
gure with --disable-multilib.


So as directed by the output, I try:


../gcc-5.4.0/configure  --disable-multilib


Now it fails with:


checking for x86_64-unknown-linux-gnu-gcc...  
/root/gcc-5.4.0-install/./gcc/xgcc
-B/root/gcc-5.4.0-install/./gcc/  
-B/usr/local/x86_64-unknown-linux-gnu/bin/ -B/u
sr/local/x86_64-unknown-linux-gnu/lib/ -isystem  
/usr/local/x86_64-unknown-linux-
gnu/include -isystem /usr/local/x86_64-unknown-linux-gnu/sys-include
checking for suffix of object files... configure: error: in  
`/root/gcc-5.4.0-ins
tall/x86_64-unknown-linux-gnu/libgcc':
configure: error: cannot compute suffix of object files: cannot compile
See `config.log' for more details.


Can anyone suggest what the fix might be? I've looked in config.log as  
the output suggests but can't find any reference to  
x86_64-unknown-linux-gnu-gcc.

cheers,
Doug






-- 
The University of Edinburgh is a charitable body, registered in
Scotland, with registration number SC005336.


^ permalink raw reply	[flat|nested] 12+ messages in thread
* Problems building GCC
@ 2000-10-20 18:44 jeisen
  0 siblings, 0 replies; 12+ messages in thread
From: jeisen @ 2000-10-20 18:44 UTC (permalink / raw)
  To: gcc-help

I've been trying to compile GCC for the past few days without success.
My first attempts were with the 2.95.2 distribution, unmodified. I would
run the set of commands given by instructions (provided below) and the
compilation would proceed smoothly until reaching a certain point in the
build2 section, where it would fail abruptly, stating that "indstream.o"
was not found. After searching for a solution to the problem, I found a
patch on the GCC archives for something that seemed similar to my
problem, a fix to let the compilation work with glibc installed. I
applied the patch, and tried again, but it failed at the same place...
with a different error. Does anyone see if there's anything I can do?

****************************************
The command I've been running to compile
****************************************

mkdir /lfs/usr/src/gcc-build &&
     cd /lfs/usr/src/gcc-build &&
     ../gcc-2.95.2/configure --prefix=/usr \
        --with-gxx-include-dir=/usr/include/g++ \
        --enable-languages=c,c++ --disable-nls &&
     make -e LDFLAGS=-static bootstrap &&
     make prefix=/lfs/usr local_prefix=/lfs/usr/local \
        gxx_include_dir=/lfs/usr/include/g++ install

**************************
The new patch I downloaded
**************************

***************
*** 1,2 ****
--- 1,7 ----
+ 2000-08-22  Rodrigo Barbosa <rodrigob@conectiva.com.br>
+
+  * libio/indstream.cc (indirectbuf::seekoff): Change int ret_val to
+  streampos ret_val for compatibility with glibc 2.1.9X
+
  2000-08-22  Alexandre Oliva  <aoliva@redhat.com>

diff -c2pr gcc/libio/indstream.cc gcc-conectiva/libio/indstream.cc
*** gcc/libio/indstream.cc Tue Aug 22 17:38:46 2000
--- gcc-conectiva/libio/indstream.cc Tue Aug 22 18:05:49 2000
*************** int indirectbuf::uflow()
*** 75,79 ****
  streampos indirectbuf::seekoff(streamoff off, _seek_dir dir, int mode)

  {
!     int ret_val = 0;
      int select = mode == 0 ? (ios::in|ios::out) : mode;
      streambuf *gbuf = (select & ios::in) ? get_stream() :
(streambuf*)NULL;
--- 75,79 ----
  streampos indirectbuf::seekoff(streamoff off, _seek_dir dir, int mode)

  {
!     streampos ret_val = 0;
      int select = mode == 0 ? (ios::in|ios::out) : mode;
      streambuf *gbuf = (select & ios::in) ? get_stream() :
(streambuf*)NULL;
*************** streampos indirectbuf::seekoff(streamoff
*** 92,96 ****
  streampos indirectbuf::seekpos(streampos pos, int mode)
  {
!     int ret_val = EOF;
      int select = mode == 0 ? (ios::in|ios::out) : mode;
      streambuf *gbuf = (select & ios::in) ? get_stream() :
(streambuf*)NULL;
--- 92,96 ----
  streampos indirectbuf::seekpos(streampos pos, int mode)
  {
!     streampos ret_val = EOF;
      int select = mode == 0 ? (ios::in|ios::out) : mode;
      streambuf *gbuf = (select & ios::in) ? get_stream() :
(streambuf*)NULL;

*************************
End of compilation output
*************************
pc-linux-gnu/bin/ -c -g -O2 -I. -I../../../gcc-2.95.2/libio
-D_IO_MTSAFE_IO  ../../../gcc-2.95.2/libio/iogetline.c -o
pic/iogetline.o
/lfs/usr/src/gcc-build/gcc/xgcc -B/lfs/usr/src/gcc-build/gcc/
-B/usr/i586-pc-linux-gnu/bin/ -c -g -O2 -I. -I../../../gcc-2.95.2/libio
-D_IO_MTSAFE_IO ../../../gcc-2.95.2/libio/iogetline.c
rm -rf libio.a
ar rc libio.a iogetline.o
ranlib libio.a
test x"no" != xyes || \
  /lfs/usr/src/gcc-build/gcc/xgcc -B/lfs/usr/src/gcc-build/gcc/
-B/usr/i586-pc-linux-gnu/bin/ -c -g -O2 -fvtable-thunks -D_GNU_SOURCE
-fno-implicit-templates -I. -I../../../gcc-2.95.2/libio -nostdinc++
-D_IO_MTSAFE_IO  ../../../gcc-2.95.2/libio/builtinbuf.cc -o
pic/builtinbuf.o
/lfs/usr/src/gcc-build/gcc/xgcc -B/lfs/usr/src/gcc-build/gcc/
-B/usr/i586-pc-linux-gnu/bin/ -c -g -O2 -fvtable-thunks -D_GNU_SOURCE
-fno-implicit-templates -I. -I../../../gcc-2.95.2/libio -nostdinc++
-D_IO_MTSAFE_IO ../../../gcc-2.95.2/libio/builtinbuf.cc
test x"no" != xyes || \
  /lfs/usr/src/gcc-build/gcc/xgcc -B/lfs/usr/src/gcc-build/gcc/
-B/usr/i586-pc-linux-gnu/bin/ -c -g -O2 -fvtable-thunks -D_GNU_SOURCE
-fno-implicit-templates -I. -I../../../gcc-2.95.2/libio -nostdinc++
-D_IO_MTSAFE_IO  ../../../gcc-2.95.2/libio/filebuf.cc -o pic/filebuf.o
/lfs/usr/src/gcc-build/gcc/xgcc -B/lfs/usr/src/gcc-build/gcc/
-B/usr/i586-pc-linux-gnu/bin/ -c -g -O2 -fvtable-thunks -D_GNU_SOURCE
-fno-implicit-templates -I. -I../../../gcc-2.95.2/libio -nostdinc++
-D_IO_MTSAFE_IO ../../../gcc-2.95.2/libio/filebuf.cc
test x"no" != xyes || \
  /lfs/usr/src/gcc-build/gcc/xgcc -B/lfs/usr/src/gcc-build/gcc/
-B/usr/i586-pc-linux-gnu/bin/ -c -g -O2 -fvtable-thunks -D_GNU_SOURCE
-fno-implicit-templates -I. -I../../../gcc-2.95.2/libio -nostdinc++
-D_IO_MTSAFE_IO  ../../../gcc-2.95.2/libio/fstream.cc -o pic/fstream.o
/lfs/usr/src/gcc-build/gcc/xgcc -B/lfs/usr/src/gcc-build/gcc/
-B/usr/i586-pc-linux-gnu/bin/ -c -g -O2 -fvtable-thunks -D_GNU_SOURCE
-fno-implicit-templates -I. -I../../../gcc-2.95.2/libio -nostdinc++
-D_IO_MTSAFE_IO ../../../gcc-2.95.2/libio/fstream.cc
test x"no" != xyes || \
  /lfs/usr/src/gcc-build/gcc/xgcc -B/lfs/usr/src/gcc-build/gcc/
-B/usr/i586-pinux-gnu/bin/ -c -g -O2 -fvtable-thunks -D_GNU_SOURCE
-fno-implicit-templates. -I../../../gcc-2.95.2/libio -nostdinc++
-D_IO_MTSAFE_IO  ../../../gcc-2.95.ibio/indstream.cc -o pic/indstream.o
/lfs/usr/src/gcc-build/gcc/xgcc -B/lfs/usr/src/gcc-build/gcc/
-B/usr/i586-pc-ux-gnu/bin/ -c -g -O2 -fvtable-thunks -D_GNU_SOURCE
-fno-implicit-templates --I../../../gcc-2.95.2/libio -nostdinc++
-D_IO_MTSAFE_IO ../../../gcc-2.95.2/lo/indstream.cc
../../../gcc-2.95.2/libio/indstream.cc: In method `struct streampos
indirectb:seekoff(long long int, ios::seek_dir, int = 3)':
../../../gcc-2.95.2/libio/indstream.cc:77: conversion from `int' to
non-scalaype `_G_fpos64_t' requested
../../../gcc-2.95.2/libio/indstream.cc:86: no match for `streampos & !=
int'
../../../gcc-2.95.2/libio/indstream.cc: In method `struct streampos
indirectb:seekpos(_G_fpos64_t, int = 3)':
../../../gcc-2.95.2/libio/indstream.cc:94: conversion from `int' to
non-scalaype `_G_fpos64_t' requested
../../../gcc-2.95.2/libio/indstream.cc:103: no match for `streampos & !=
int'make[2]: *** [indstream.o] Error 1
make[2]: Leaving directory
`/lfs/usr/src/gcc-build/i586-pc-linux-gnu/libio'
make[1]: *** [all-target-libio] Error 2
make[1]: Leaving directory `/lfs/usr/src/gcc-build'
make: *** [bootstrap] Error 2


^ permalink raw reply	[flat|nested] 12+ messages in thread
* problems building gcc
@ 2000-07-19  2:17 Helfried Tschemmernegg
  0 siblings, 0 replies; 12+ messages in thread
From: Helfried Tschemmernegg @ 2000-07-19  2:17 UTC (permalink / raw)
  To: gcc-help

Hi!
I've been trying to build gcc-2.95.2 with cygwin for more than a week with
many different parameters calling configure. But I get the following error,
when I call make:

toplev.o: In function `main':
/cygdrive/c/xmingw/build/gcc/../../src/gcc-2.95.2/gcc/toplev.c:5462:
undefined reference to `_environ'
collect2: ld returned 1 exit status
make[1]: *** [cc1.exe] Error 1
make[1]: Leaving directory `/cygdrive/c/xmingw/build/gcc'
make: *** [all-gcc] Error 2

What do I do wrong? Please help me.

Thanks in advance
   Helfried

-- 
Sent through GMX FreeMail - http://www.gmx.net

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

end of thread, other threads:[~2024-02-07 13:26 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-06 17:36 Problems building gcc T Rex
2024-02-06 19:22 ` Jonathan Wakely
     [not found]   ` <CAGmGLoh+Pbo9G9=1sDRXyHTV7-_CkPDOw+JWppn1TuVRXnszcA@mail.gmail.com>
2024-02-06 22:35     ` Fwd: " T Rex
2024-02-07  7:33       ` Jonathan Wakely
2024-02-07  8:56       ` Fwd: " David Brown
2024-02-07 13:25         ` T Rex
  -- strict thread matches above, loose matches on Subject: below --
2016-07-27  8:17 Douglas Houston
2016-07-27  8:22 ` Jonathan Wakely
2016-07-27  8:33   ` Jonathan Wakely
2016-07-27 21:59 ` Brian Drummond
2000-10-20 18:44 Problems building GCC jeisen
2000-07-19  2:17 problems building gcc Helfried Tschemmernegg

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