最近、graclusソフトウェアをダウンロードしました。それをインストールしようとしている間、私はいくつかのオプションでmakefile.inを完成させなければなりませんでした。私は他のオプションを理解しましたが、LDOPTIONSのために何を書くかを見つけることができませんでした。
コンパイラが使用するオプションを入力する方法を誰かが理解するのを手伝ってもらえますか?助けていただければ幸いです。
//これがmakefile.inです
# Which compiler to use
CC = g++
# What optimization level to use
OPTFLAGS = -O2 -fPIC
# What options to be used by the compiler
COPTIONS = -DNUMBITS=32
# What options to be used by the loader
LDOPTIONS =
# What archiving to use
AR = ar rv
# What to use for indexing the archive
RANLIB = ranlib
ARCH = P4SSE2
LAPACK = -llapack_$(ARCH)
ARPACK = -lcarpack_$(ARCH)
ATLAS = -latlas_$(ARCH)
CBLAS = -lcblaswr -lcblas -lblas -lmyf2c
GSL = -lgslcblas -lgsl
SPARSE = -lsparse
UTIL = -lmyutil