Changeset 1034

Show
Ignore:
Timestamp:
05/20/06 15:37:31 (3 years ago)
Author:
archaic
Message:

Updated: all_of_gcc_during_lfs.txt/

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/all_of_gcc_during_lfs.txt

    r1031 r1034  
    11AUTHOR: Randy McMurchy <randy_at_linuxfromscratch_dot_org> 
    22 
    3 DATE: 2006-05-04 
     3DATE: 2006-05-18 
    44 
    55LICENSE: Creative Commons Attribution-NonCommercial-ShareAlike License 
     
    3737PREREQUISITES: 
    3838 
    39 You must have a csh shell installed on the host system if you plan on 
    40 installing the Ada compiler and you don't already have an existing Ada 
    41 compiler on the host system. Instructions for installing the Tcsh package 
    42 can be found at: 
    43 http://www.linuxfromscratch.org/blfs/view/svn/postlfs/tcsh.html 
     39None 
    4440 
    4541HINT: 
     
    5753        4.  The Ada compiler 
    5854        5.  Package dependencies 
    59               csh shell installation 
    6055        6.  Installing the GNAT Ada compiler 
    6156        7.  Configuring the PATH variable 
     
    224219section at the beginning of the hint. 
    225220 
    226 The GNAT binary version installation requires a csh shell to run the  
    227 configuration script. 
    228  
    229 ---------------------- 
    230 csh shell installation 
    231 ---------------------- 
    232  
    233 If you don't have a csh shell available on the host system, follow the  
    234 instructions found at:  
    235 http://www.linuxfromscratch.org/blfs/view/svn/postlfs/tcsh.html 
    236  
    237 This must be done before starting your LFS build, from another terminal 
    238 before continuing if you are in the middle of something using your existing 
    239 terminal, or using your existing terminal and ensure you install the csh 
    240 on your host system, and not in /tools. 
    241  
    242221==================================== 
    2432226. INSTALLING THE GNAT ADA COMPILER: 
     
    254233http://anduin.linuxfromscratch.org/sources/BLFS/svn/g/gnat-3.15p-i686-pc-redhat71-gnu-bin.tar.bz2 
    255234 
    256 2. Issue the following commands to unpack the tarball and configure the 
    257 installation
     2352. Issue the following commands to unpack the tarball and change directories 
     236into the root of the source tree
    258237 
    259238tar xf gnat-3.15p-i686-pc-redhat71-gnu-bin.tar.gz 
    260239cd gnat-3.15p-i686-pc-linux-gnu-bin 
    261 ./doconfig 
    262  
    263 (answer "3" at the first prompt asking what type of installation you desire,  
    264 and answer "/tools/gnat" when prompted for an installation path) 
    265240 
    2662413. Issue the following command to install the GNAT compiler: 
    267242 
    268 ./doinstall 
     243make ins-all prefix=/tools/gnat 
    269244 
    270245You should check and ensure that the /tools/gnat directory was created and 
    271 populated with files. 
     246populated with files. The GNAT source tree can be removed. 
    272247 
    273248================================= 
     
    408383ACKNOWLEDGEMENTS: 
    409384 
    410 The LFS community 
     385* Jim Gifford for the tip about using the existing Makefile to install GNAT. 
     386* The LFS community for creating and maintaining such a cool project. 
    411387 
    412388CHANGELOG: 
     
    428404      the Ada compiler. 
    429405 
    430  
     406[2006-05-18] 
     407    * Changed the GNAT installation to use the existing Makefile, which 
     408      eliminates the need to install Tcsh. 
     409