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

Installing Salmon

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Use an SFTP tool to upload the Salmon installation package to the /path/to/SALMON directory on the server.
  3. Run the following command to set the environment variable:
    export PATH=/path/to/CMAKE/bin:$PATH
  4. Run the following command to decompress the installation package:
    cd /path/to/SALMON && tar -zxf v1.4.0.tar.gz
  5. Run the following command to go to the installation directory:
    cd salmon-1.4.0
  6. Run the following command to create a build directory and go to the directory:
    mkdir build && cd build
  7. Run the following commands to perform the compilation and installation:
    CC=`which gcc` CXX=`which g++` cmake -DNO_IPO=TRUE -DCMAKE_C_FLAGS="-O3 -march=armv8.2-a -mtune=tsv110" -DCMAKE_CXX_FLAGS="-O3 -march=armv8.2-a -mtune=tsv110" -DCMAKE_INSTALL_PREFIX=/path/to/SALMON -DBOOST_INCLUDEDIR=/path/to/BOOST/include -DBOOST_LIBRARYDIR=/path/to/BOOST/lib ..
    make -j && make install