Installing RMBlast
Procedure
- Use PuTTY to log in to the server as the root user.
- Decompress the source package.
tar zxvf ncbi-rmblastn-2.2.28-src.tar.gz
- Go to the directory generated after the decompression.
cd ncbi-rmblastn-2.2.28-src
- Modify the configure file.
- Open configure.
vi src/build-system/configure
- Press i to enter the insert mode and modify line 4749.
4746 if test "$GCC" = "yes" ; then 4747 compiler_ver="`$real_CXX -dumpversion 2>&1`" 4748 case "$compiler_ver" in 4749 2.95* | 2.96* | 3.* | 4.* | 7.*) 4750 compiler="GCC" 4751 ncbi_compiler="GCC" 4752 ncbi_compiler_ver="$compiler_ver"
- Press Esc, type :wq!, and press Enter to save the file and exit.
- Open configure.
- Perform the compilation and installation.
./configure --prefix=/path/to/rmblas --build=aarch64-unknown-linux-gnu --without-debug --with-mt CFLAGS=-Wno-narrowing CXXFLAGS=-Wno-narrowing make -j make -j install
- Load the environment variable.
export PATH=/path/to/rmblast/bin:$PATH
Parent topic: Configuring the Compilation Environment
