Installing Blitz
Procedure
- Use PuTTY to log in to the server as the root user.
- Run the following commands to decompress the Blitz installation package:
tar -xvf blitz-1.0.1.tar.gz
- Run the following command to switch to the directory generated after the package is decompressed:
cd blitz-1.0.1/
- Run the following command to perform configuration:
autoreconf -fiv ./configure --prefix=/path/to/BLITZ --enable-fortran --enable-64bit
- Run the following commands to perform compilation and installation:
make lib make install cp -rf ./src /path/to/BLITZ
- Run the following commands to load environment variables:
export BLITZ_INCLUDEDIR=/path/to/BLITZ/include export LD_LIBRARY_PATH=/path/to/BLITZ/lib:$LD_LIBRARY_PATH
Parent topic: Configuring the Compilation Environment