This is the mail archive of the gcc-bugs@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]

Re: compile and install bugs on irix


On Jun 20, 1999, Stephane Conversy <Stephane.Conversy@lri.fr> wrote:

>> If it does, we could check for Csup too.  Another
>> alternative is to simply not check for -lz, since it's not needed for
>> our texinfo build.

> I think we should avoid linking with -lz since it is not used:

The attached patch should take care of it.  Jeff, ok to install?

>> > when using g++ with <string> for example, it looks et headers in:
>> > installdir/include/g++-2

>> That's correct.  Didn't the C++ headers get installed in there after
>> `make install'?

> no, it's in g++. There is no g++2 at all.
> I had an old version of egcs (1.1.2) before that uses the directory g++.

Make sure you had permission to create g++-2, remove the link you had
created then run `make install-target-libstdc++', and watch out for
error messages.

> I made a link g++-2 to g++, maybe it's because of that that I have an
> internal error...

That's possible, the C++ libraries are a bit different.

-- 
Alexandre Oliva http://www.dcc.unicamp.br/~oliva IC-Unicamp, Bra[sz]il
{oliva,Alexandre.Oliva}@dcc.unicamp.br  aoliva@{acm.org,computer.org}
oliva@{gnu.org,kaffe.org,{egcs,sourceware}.cygnus.com,samba.org}
*** E-mail about software projects will be forwarded to mailing lists
Index: texinfo/ChangeLog
from  Alexandre Oliva  <oliva@dcc.unicamp.br>
	
	* configure.in (zlib.h, libz): Disable checks.
	* configure, config.h.in: Rebuilt with autoconf 2.13.
	
Index: texinfo/configure.in
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/texinfo/configure.in,v
retrieving revision 1.8
diff -u -r1.8 configure.in
--- texinfo/configure.in	1998/04/12 20:00:34	1.8
+++ texinfo/configure.in	1999/06/23 07:04:05
@@ -27,7 +27,7 @@
 AM_EXEEXT
 
 dnl Checks for libraries.
-AC_CHECK_HEADERS(zlib.h, [AC_CHECK_LIB(z, gzdopen)])
+dnl AC_CHECK_HEADERS(zlib.h, [AC_CHECK_LIB(z, gzdopen)])
 
 # Needed on sysV68 for sigblock, sigsetmask.  But check for it in libc first.
 AC_CHECK_FUNC(sigblock, , AC_CHECK_LIB(bsd, sigblock))

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