From: fca Date: Wed, 16 Jun 1999 08:24:19 +0000 (+0000) Subject: Set up-to-date for release X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=789559148d752e75ba87b98aa023f0f997d17de9 Set up-to-date for release --- diff --git a/html/Installation.html b/html/Installation.html index ef41e538a11..1911546dcd8 100644 --- a/html/Installation.html +++ b/html/Installation.html @@ -59,9 +59,8 @@ LINK="#0000FF" VLINK="#551A8B" ALINK="#FF0000">

1. Code Management

-

The code is maintained as a set of files and headers assembled via a -Makefile. We realise that this configuration is not satisfactory, and we -will migrate to a more coherent code management scheme in due time. +

The code is maintained under cvs. +The cvs repository will be made public soon. @@ -118,8 +117,8 @@ reduced subset of the CERN Library available from the ALICE distribution. of the ALICE software should install the code locally according to the procedure described in the next chapter. -

As of writing the code has been tested on HP-UX 10.2, Linux 5.1 and -Solaris. Porting to other platforms and compilers will take place. +

As of writing the code has been tested on HP-UX 10.2, Linux 5.1, DEC OSF +and Solaris. Porting to other platforms and compilers will take place. @@ -216,6 +215,36 @@ root [1] .x menu.C +

Notice for Linux users

+ +

AliRoot requires the compiler system egcs 1.1.1 or later. Unfortunately +the location of the include files is dependent on the compiler version on +Linux. While g++ knows the location of the files relative to its own +version, but this is not the case for the makedepend, that should be told +where include files are. This is accomplished by the DEPINC variable in the +file $ALIROOT/conf. + +

In case several error message appear during the make phase, complaining +for include files not found, the list of include directories in DEPINC +should be compared with the standard list of the compiler, that can be +found out with the following commands: + +

+touch dummy.cxx
+g++ -v dummy.cxx
+
+ +

and looking at the output between the lines: + +

+#include <...> search starts here:
+.
+.
+.
+.
+End of search list.
+
+