Installing Jellyfish
Procedure
- Use PuTTY to log in to the server as the root user.
- Use an SFTP tool to upload the Jellyfish installation package to the /path/to/JELLYFISH directory on the server.
- Run the following command to decompress the installation package:
cd /path/to/JELLYFISH && tar -zxf jellyfish-2.2.10.tar.gz
- Run the following command to go to the directory generated after the decompression:
cd jellyfish-2.2.10
- Run the following command to perform the configuration:
CC=`which gcc` CXX=`which g++` ./configure --prefix=/path/to/JELLYFISH CXXFLAGS='-O3 -std=c++11 -march=armv8.2-a -mtune=tsv110 -flto' CFLAGS='-O3 -march=armv8.2-a -mtune=tsv110 -flto'
- Run the following command to perform the installation and compilation:
make -j && make install
Parent topic: Configuring the Compilation Environment