安装Blitz

操作步骤

  1. 使用PuTTY工具,以root用户登录服务器。
  2. 执行以下命令解压Blitz安装包。

    tar -xvf blitz-1.0.1.tar.gz

  3. 执行以下命令进入解压后的目录

    cd blitz-1.0.1/

  4. 执行以下命令进行配置。

    autoreconf -fiv
    ./configure --prefix=/path/to/BLITZ --enable-fortran --enable-64bit

  5. 执行以下命令修改“genstencils.py”文件

    1. 打开“genstencils.py”文件
      vi blitz/generate/genstencils.py
    2. 按“i”进入编辑模式,修改“genstencils.py”文件中第9行的内容。
      print("Generating file %s"%sys.argv[1])

      执行5.a之后,按“Esc”键,输入“:set nu”,按“Enter”即可显示出行号。

    3. 按“Esc”键,输入:wq!,按“Enter”保存并退出编辑。

  6. 执行以下命令进行编译安装

    make lib
    make install
    cp -rf ./src /path/to/BLITZ

  7. 执行以下命令加载环境变量。

    export BLITZ_INCLUDEDIR=/path/to/BLITZ/include
    export LD_LIBRARY_PATH=/path/to/BLITZ/lib:$LD_LIBRARY_PATH