From: dgaudet Date: Mon, 25 May 1998 17:35:26 +0000 (+0000) Subject: document the all too common gcc version mismatch X-Git-Tag: djg-apache-nspr-07~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ea3e5dbba08b0704e0b6e9e59654bea91dbe7ec;p=thirdparty%2Fapache%2Fhttpd.git document the all too common gcc version mismatch git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@81360 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/FAQ.html b/docs/manual/misc/FAQ.html index 949c18844a2..77e89342add 100644 --- a/docs/manual/misc/FAQ.html +++ b/docs/manual/misc/FAQ.html @@ -14,7 +14,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.116 $ ($Date: 1998/05/20 14:22:39 $) + $Revision: 1.117 $ ($Date: 1998/05/25 17:35:26 $)

The latest version of this FAQ is always available from the main @@ -284,6 +284,9 @@

  • What are "regular expressions"?
  • +
  • I'm using gcc and I get some compilation errors, what + is wrong? +
  • @@ -2297,6 +2300,23 @@
    +
  • I'm using gcc and I get some + compilation errors, what is wrong? +

    + GCC parses your system header files and produces a modified subset which + it uses for compiling. This behaviour ties GCC tightly to the version + of your operating system. So, for example, if you were running IRIX 5.3 + when you built GCC and then upgrade to IRIX 6.2 later, you will have to + rebuild GCC. Similarly for Solaris 2.4, 2.5, or 2.5.1 when you upgrade + to 2.6. Sometimes you can type "gcc -v" and it will tell you the version + of the operating system it was built against. +

    + If you fail to do this, then it is very likely that Apache will fail + to build. One of the most common errors is with readv, + writev, or uio.h. This is not a + bug with Apache. You will need to re-install GCC. +


    +