Installing Blitz
Procedure
- Use PuTTY to log in to the server as the root user.
- Decompress the Blitz installation package.
tar -xvf blitz-1.0.1.tar.gz
- Go to the directory generated after the decompression.
cd blitz-1.0.1/
- Perform the configuration.
autoreconf -fiv ./configure --prefix=/path/to/BLITZ --enable-fortran --enable-64bit
- Modify the genstencils.py file.
- Perform the compilation and installation.
make lib make install cp -rf ./src /path/to/BLITZ
- Load the 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
