Rate This Document
Findability
Accuracy
Completeness
Readability

Compiling and Installing Jellyfish

Procedure

  1. Run the following command to decompress the installation package:
    tar zxvf jellyfish-2.2.10.tar.gz
  2. Run the following command to go to the directory generated after the decompression:
    cd jellyfish-2.2.10
  3. Run the following command to perform the configuration:
    ./configure --prefix=/path/to/JELLYFISH/Install CXXFLAGS='-O3 -std=c++11 -march=armv8.2-a -mtune=tsv110 -flto' CFLAGS='-O3 -march=armv8.2-a -mtune=tsv110 -flto'
  4. Run the following commands to perform the installation and compilation:
    make -j 32
    make install
  5. Run the following command to add the environment variable:
    export PATH=/path/to/JELLYFISH/Install/bin:$PATH