0

我正在尝试在我的 fortran 程序中使用一个名为“decomp_2d”的外部库。我有一个声明为“DECOMP2D”的环境变量,它指向“decomp_2d”所在的目录。该目录具有以下结构:

[k00603@fe01p03 2decomp_fft]$ls
doc  examples  include  lib  Makefile  README  src
[k00603@fe01p03 2decomp_fft]$ls lib/
lib2decomp_fft.a  Makefile
[k00603@fe01p03 2decomp_fft]$ls include/
decomp_2d_fft.mod  decomp_2d_io.mod  decomp_2d.mod  glassman.mod

在另一个目录中,我试图调用一个使用该库的子例程的程序。但是当我这样做时,我得到一个编译时错误。我附上了我正在使用的最小 fortran 代码和我用来编译的 Makefile。这是一台富士通机器,他们有自己的 fortran 编译器,我用它来编译:

该程序:

  program   Sora_v71

! Use the external library
  use decomp_2d

  integer n

  call decomp_2d_init(n,n,n,n,n)

  stop
  end

生成文件:

# Lines included for using the 2decomp libraries
INC_2DECOMP = -I$(DECOMP2D)/include/
L2DECOMP = -L$(DECOMP2D)/lib/ -l2decomp_fft

## ------------------------------------------------------
RM        =  rm
SRCDIR    = .
LIBDIR    = .
BIN       = binary
OBJS      = main.o 

## -------------------------------------------------------
mpifrtpx=$(shell which mpifrtpx)
FC=$(mpifrtpx)

FFLAGS   = $(F90FLAG) $(INC_2DECOMP) 
LFLAGS   = $(F90FLAG) -L$(LIBDIR) $(L2DECOMP)

## -------------------------------------------------------
all: $(BIN)

$(BIN): $(OBJS)
    @echo Linking $(BIN) .....
    $(FC) $(LFLAGS) -o $@ $(OBJS)

.f.o:
@echo Compiling $*.f
$(FC) $(FFLAGS) -c $(SRCDIR)/$*.f

clean:
@echo 'Cleaning .....'
$(RM) -f core *.o *~ *.L *.O $(BIN) $(SIZE_FILE)

当我输入“make”时,我收到以下错误:

[k00603@fe01p04 test]$make
Compiling main.f
/opt/FJSVtclang/GM-1.2.0-11/bin/mpifrtpx  -I/home/hp120242/k00603/2decomp_fft//include/ -c ./main.f
Linking binary .....
/opt/FJSVtclang/GM-1.2.0-11/bin/mpifrtpx  -L. -L/home/hp120242/k00603/2decomp_fft//lib/ -l2decomp_fft -o binary main.o 
main.o: In function `MAIN__':
main.f:(.text+0x4c): undefined reference to `decomp_2d.decomp_2d_init_'
main.o:(.data+0x0): undefined reference to `decomp_2d.decomp_2d_init_'
make: *** [binary] Error 1

有任何想法吗?

4

1 回答 1

2

对于某些链接器,链接命令中库的顺序很重要。通常它们必须在引用它们的目标文件之后。尝试切换$(LFLAGS)$(OBJS)在链接命令中。

于 2013-02-20T11:33:03.510 回答