gfortran编译期间缺少参数和对PLASMA函数的未定义引用

时间:2019-07-23 13:55:33

标签: compilation fortran gfortran

我正在尝试编译使用PLASMA libraries的Fortran程序。编译失败,未定义对__plasma_MOD_plasma_init的引用。在plasma.h内部(我假设plasma.mod是其接口),plasma_init用一个参数定义,而在Fortran程序中用两个参数调用。但是,当删除第二个参数时,出现错误:(1)缺少参数'info'的实际参数。我还无法理解这一点,所以希望这里的人可以。

我正在使用PLASMA 2.8.0和gcc 6.3.0 20170516。

这是makefile。我尝试包含包含plasma.pc的pkgconfig,因为我认为该函数的实现丢失了。

#LIB_ROOT = path to the lib
INCLUDE_PLASMA := $(LIB_ROOT)/plasma_2.8.0/include
LIB_PLASMA := $(LIB_ROOT)/plasma_2.8.0/lib/pkgconfig

example: example.f90
    gfortran -o example example.f90 -I$(INCLUDE_PLASMA) -L$(LIB_PLASMA)

这是最小的Fortran代码:

program example
  use plasma
  implicit none

  integer :: a = 1
  integer :: info = 1

  call plasma_init(a, info)
end program

在plasma.h中,plasma_init定义为:

int PLASMA_Init(int cores);

1 个答案:

答案 0 :(得分:0)

我通过正确链接到所需的库来解决了我的问题,这是新的生成文件:

PLASMA_BUILD = [some directories]/plasma-installer_2.8.0/build
LIB_PLASMA := $(PLASMA_BUILD)/plasma_2.8.0/lib # contains libplasma.a, libcoreblas.a and libcoreblasqw.a
LIB_QUARK := $(PLASMA_BUILD)/plasma_2.8.0/quark # contains libquark.a
LIB_LAPACK := $(PLASMA_BUILD)/lapack-3.6.0 # contains liblapack.a and liblapacke.a
PLASMA_INTERFACE = $(PLASMA_BUILD)/plasma_2.8.0/control # contains plasma.mod

example: example.f90
    gfortran -o example example.f90 -lpthread \
    -L$(LIB_PLASMA) -lplasma -lcoreblas -lcoreblasqw \
    -L$(LIB_QUARK) -lquark \
    -L$(LIB_LAPACK) -llapacke -llapack \
    -I$(PLASMA_INTERFACE)