我要评分
获取效率
正确性
完整性
易理解

Installing Blitz

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Run the following commands to decompress the Blitz installation package:
    tar -xvf blitz-1.0.1.tar.gz
  3. Run the following command to switch to the directory generated after the package is decompressed:
    cd blitz-1.0.1/
  4. Run the following command to perform configuration:
    autoreconf -fiv
    ./configure --prefix=/path/to/BLITZ --enable-fortran --enable-64bit
  5. Run the following commands to perform compilation and installation:
    make lib
    make install
    cp -rf ./src /path/to/BLITZ
  6. 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