[BACK]Return to INSTALL CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000

Annotation of OpenXM_contrib2/asir2000/INSTALL, Revision 1.8

1.7       noro        1:               Installation of Asir2000 (standalone version; 2003.3.11)
1.1       noro        2:
1.4       noro        3: Any question is welcome by e-mails to noro@math.kobe-u.ac.jp.
1.1       noro        4:
                      5: 0. Compiler
                      6:
1.4       noro        7: On SPARC, gcc is used. Set the search path so that
1.1       noro        8: '/usr/ccs/bin' is searched before '/usr/local/bin'.
                      9:
                     10: On PC/x86 gcc is used.
                     11:
                     12: On Alpha the native compiler /usr/ccs/bin/cc is used.
                     13:
                     14: 1. Determining the install directory
                     15:
1.4       noro       16: In the install directory, the following subdirectories are put:
1.1       noro       17:
                     18: bin       executables of PARI and Asir
1.4       noro       19: lib       library files of PARI and Asir
1.1       noro       20: include   header files of PARI
                     21:
                     22: These subdirectories are created automatically if they does not exist.
1.4       noro       23: If you can be a root, it is recommended to set the install directory
1.5       noro       24: to '/usr/local'.  In the following the directory is denoted by TARGETDIR.
1.1       noro       25:
1.4       noro       26: 2. Installation of pari
1.1       noro       27:
1.7       noro       28: % gzip -dc pari.tgz | tar xvf -
                     29: % cd pari
1.1       noro       30: % ./Configure --prefix=TARGETDIR
                     31: % make all
                     32: % su                         <-- if necessary
                     33: # make install
                     34: # make install-lib-sta
                     35: # exit
                     36: %
                     37:
1.8     ! noro       38: While executing 'make install', the procedure may stop due to
        !            39: some error. Then try the following:
        !            40:
        !            41: % cd Oxxx           <--- 'xxx' is the name of the current OS.
        !            42: % make lib-sta
        !            43: % su
        !            44: # make install-lib-sta
        !            45: # make install-include
        !            46: # exit
        !            47: %
        !            48:
        !            49: Although GP is not built, the library necessary for building asir2000
        !            50: will be generated.
        !            51:
1.1       noro       52: 3. Installation of asir2000
                     53:
1.4       noro       54: % gzip -dc asir.tgz | tar xvf -
1.1       noro       55: % cd asir2000
1.7       noro       56: % configure --prefix=TARGETDIR --with-pari --enable-plot
1.1       noro       57: % make
                     58: % su                        <-- if necessary
                     59: # make install
1.2       noro       60: # make install-lib
                     61: # make install-doc
1.1       noro       62: # exit
                     63: %
                     64:
                     65: 3. Environment variables
                     66:
1.4       noro       67: If ASIR_LIBDIR is already set, unset it.
1.1       noro       68:
                     69: 4. Making manuals
                     70:
                     71: 'ptex', 'texi2html', 'makeinfo' (ver. 1.68 or later) are required.
                     72:
1.4       noro       73: % gzip -dc asir-doc.tgz | tar xvf -
                     74: % cd asir-doc
1.1       noro       75: % make
                     76:
                     77:
                     78:

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>