現在のフォルダからum.cというプログラムをum.c でコンパイルしようとしていて、いくつかの外部実装が含まれています。 .hファイルは1つのディレクトリにありますが、これらの.hファイルを実装する.cファイルは別のディレクトリにあります。私のメイクファイルは以下の通りです。コンパイラは.hファイルの場所を知っているようです。しかし、リンカは失敗し、エラーを生成します。メイクファイルを使用して異なるディレクトリの.hファイルと.cファイルをリンクする
ld: symbol(s) not found for architecture x86_64
clang: fatal error: linker command failed with exit code 1
のMakefile:私はメイクで少し経験を持っているが、私は.hのリンクできる方法がありますので
# define the C compiler to use
CC = gcc
# define any compile-time flags
CFLAGS = -g -O -Wall -Wextra -Werror -Wfatal-errors -std=c99 -pedantic
# define any directories containing header files other than /usr/include
INCLUDES = -I/Users/nguyenmanhduc/Documents/C\ library/cii/include
# define library paths in addition to /usr/lib
LFLAGS = -L/Users/nguyenmanhduc/Documents/C\ library/cii/src
# define any libraries to link into executable:
LIBS = -lm
# define the C source files
SRCS = um.c
# define the C object files
OBJS = $(SRCS:.c=.o)
# define the executable file
MAIN = um
.PHONY: depend clean
all: $(MAIN)
@echo Simple compiler named um has been compiled
$(MAIN): $(OBJS)
$(CC) $(CFLAGS) $(INCLUDES) -o $(MAIN) $(OBJS) $(LFLAGS) $(LIBS)
.c.o:
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o [email protected]
clean:
$(RM) *.o *~ $(MAIN)
depend: $(SRCS)
makedepend $(INCLUDES) $^
は、この質問は奇妙に思えるかもしれませんし、 .cファイルをmakefileを使って異なるフォルダにコピーします。
ありがとうございます!