0

我正在移植一些在 codeblocks IDE 中开发的代码。我将它转移到 Linux 服务器上,我只能使用命令行来编译代码。代码非常大(可能有 100 个文件),我需要更新许多文件中的包含命令。例如,当我尝试编译它时出现错误:#include <gsl/gsl_math.h>找不到文件错误。我假设找不到它,因为 gsl 文件夹的位置是在 IDE 的搜索目录字段选项之一中声明的。我可以通过每个文件更新到正确的路径,但是有没有更好的方法来使用makefile?

谢谢!

编辑有问题的 Makefile

# -c : do not link, just create object file
# -o : output file name

CFLAGS += -c -O2 -I../ctraj -I../cspice/include -I../SGP4 -I../cconj -I../GSL-1.13/include 
LIBS = -L../ctraj -lctraj -L../cspice/lib -lcspice -L../SGP4 -lsgp4 -L../cconj -lcconj -L./ -lgsl-0 -lgslcblas-0 -lm
DEPS = light.h ../ctraj/ctraj.h ../cconj/cconj.h
OBJ = light.o tle.o propagator.o orbitfit.o conjunction.o light_displacement.o forces_LF.o
OUT = light.exe

%.o: %.c $(DEPS)
gcc -o $@ $< $(CFLAGS)

light: $(OBJ)
cd ../ctraj/; make
gcc -o $(OUT) $(OBJ) $(LIBS)

clean:
rm *.o $(OUT)

编辑 2

文件夹结构

光->(GSL-1.13, 光, cconj, ctraj)

makefile 位于 Light 文件夹中。

错误信息

cd ../ctraj/; make
make[1]: Entering directory `/light/ctraj'
gcc -o forces.o forces.c -c -Wall -Wno-maybe-uninitialized -Wno-unused-but-set-variable -O2 -I../cspice/include -Inrlmsise
In file included from ../Light/../cconj/cconj.h:12:0,
             from ../Light/light.h:13,
             from forces.c:3:
../Light/../cconj/../GSL-1.13/include/gsl/gsl_blas.h:26:28: fatal error: gsl/gsl_vector.h: No such file or directory
compilation terminated.
make[1]: *** [forces.o] Error 1
make[1]: Leaving directory /light/ctraj'
make: *** [light] Error 2

编辑 3

cconj 中的第二个 makefile

# -c : do not link, just create object file
# -o : output file name
#-L../cconj -lcconj 

CFLAGS += -c -O2 -I./ -I../GSL-1.13/include 
LIBS = -L./ -lgsl-0 -lgslcblas-0 -lm
INC= -I../GSL-1.13/include
DEPS = cconj.h 
OBJ = cconj_util.o ellipse_intersect.o collision_prob_real.o rcs2size.o
OUT = libcconj.a

%.o: %.c $(DEPS)
gcc -o $@ $< $(CFLAGS)

cconj: $(OBJ)
ar rcs $(OUT) $(OBJ) 

clean:
rm *.o $(OUT)
4

2 回答 2

2

尝试将此行添加到您的 makefile 中,并告诉我们它是否有效:

CFLAGS += -I../GSL-1.13/include

为了编译源代码和生成目标文件,Make 必须使用规则。(如果你没有在 makefile 中加入这样的规则,Make 有一个默认的规则来实现这个目的。)它看起来像这样:

%.o: %.c
    $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@

无需深入研究其工作原理,我们可以说这CFLAGS是要传递给编译器的参数列表。当我们添加 时-I../GSL-1.13/include,我们告诉编译器“如果你想#include 某些东西并且在其他地方找不到它,请查看 ../GSL-1.13/include”。

如果这种方法不起作用,那么在 makefile 中可能有一条我们必须找到并更改的规则。

编辑:

问题不在这个 makefile 中(它已经包含对 的引用GSL-1.13/include)。在这个命令中:

cd ../ctraj/; make

此 makefile 启动第二个 Make 进程,该进程使用light/cconj/. 根据编译器输出 ( gcc -o forces.o ...),该 makefile 不包含该引用。所以尝试在那里添加相同的行,如果这不起作用,请发布该 makefile,我们将继续寻找。

于 2013-09-09T21:24:14.433 回答
1

Use -I option of gcc to specify where to look for includes.

于 2013-09-09T18:52:29.547 回答