diff options
author | K. Richard Pixley <rich@cygnus> | 1991-04-13 07:41:11 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-04-13 07:41:11 +0000 |
commit | 5083ec81b0d5c8b1c351eb455e8181d278b4cd3c (patch) | |
tree | abfccffc4ecee9eb956a66168e43ab28fadf804b /INSTALL | |
parent | f149eb99b2bf977c3941cf302120540bb2c1136b (diff) | |
download | gdb-5083ec81b0d5c8b1c351eb455e8181d278b4cd3c.zip gdb-5083ec81b0d5c8b1c351eb455e8181d278b4cd3c.tar.gz gdb-5083ec81b0d5c8b1c351eb455e8181d278b4cd3c.tar.bz2 |
Nearly complete. Still needs pointer to "more doc".
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 92 |
1 files changed, 85 insertions, 7 deletions
@@ -1,7 +1,85 @@ -* configure -** defaults -*** name encoding (bolted) -*** destdir (can be set at config time with +destdir=/foo) -* make (optional) -* make install -* make clean (optional) + + + GNU Development Tools + A Cygnus Support Release + + +This is the procedure for installing the a29k cross compiler on a +sun4. + + +0. Load the tape. + + If you haven't already done so, load the tape with: + + tar xvf /dev/rst8 + + It doesn't really matter where, so long as the hard disk space + is available. The source for the tools will be loaded into + ./devo. + + The installed portion of the tools will take about 4 Mbytes of + disk space. Simply loading the source from tape will require + about 32 Mbytes. Loading the source from tape, building, and + installing the tools will need about 46 Mbytes. + + Once loaded: + + cd devo + +1. Create destdir. + + The default location for all installed files and programs is + /usr/local. We refer to this directory as $(destdir). You + can change $(destdir) only at configuration time. This is + because some tools have hard coded pathnames. + + If you change destdir after the tools are built, you will need + to "make clean" and then rebuild. If you don't understand + this, you should probably be using the defaults for now. + + User visible programs are installed in $(destdir)/bin. All + other files and programs are installed in $(destdir)/lib/gcc. + + If $(destdir) does not already exist, create it now. + +2. Configure the source. + + If you use the default $(destdir): + + configure +host=sun4 a29k + + Otherwise: + + configure +host=sun4 a29k +destdir=yourdestdir + + where "yourdestdir" should be the name of the $(destdir) that + you've chosen. + +3. Build and install the tools. + + Use: + make install + + This will take about 20 minutes on an otherwise unloaded + SparcStation 2 with a quick, sync, SCSI hard disk. + +That's it. You're done. If you don't plan to hack these sources in +the near future, you'll probably want to also: + +4. Remove intermediate object files. + + make clean + + and perhaps even: + + cd .. ; rm -rf devo + + +To use these tools, you will probably want to add $(destdir)/bin to +your path. The tools are named with the standard UNIX(tm) names with +"-a29k" appended so as to avoid conflict with native development +tools. That is, nm-a29k, etc. + +For more information on usage, please refer to {LOTS OF VERY PRETTY +HARD COPY} (sic) that you should have received with your tape. |