gpt4 book ai didi

c++ - 添加新库以编译 anyterm。如何编辑 Makefile?

转载 作者:太空宇宙 更新时间:2023-11-04 13:17:04 24 4
gpt4 key购买 nike

我正在修改 Anyterm ( http://anyterm.org/ ) 以添加我在所做的一些更改中需要的配置文件。

我正在使用 inih 项目 ( https://github.com/benhoyt/inih ) 来读取该文件。该文件包含我的数据库数据以连接到它。我还包含了 mysql 库,它们在编译时一切正常。

当我试图将新的 inih 库添加到 Makefile 时,问题就来了。 Inih 的文件扩展名为 .c 和 .cpp,而 anyterm 的文件扩展名为 .cc

Makefile 是这样的:

default_target: anytermd

SRC_DIR=../src

VPATH=${SRC_DIR} .

UNAME_S=$(shell uname -s)

ifeq (${UNAME_S},Darwin)
else
HAVE_GNU_LD=1
endif

LIBPBE_DIR=../libpbe

CPP_FLAGS=

GCC_FLAGS=-pthread
#GCC_FLAGS=-D_REENTRANT

COMPILE_FLAGS=$(CPP_FLAGS) $(GCC_FLAGS) -W -Wall ${OPTIMISE_FLAGS} ${DEBUG_FLAGS}

CC_COMPILE_FLAGS=$(COMPILE_FLAGS)

LINK_FLAGS=${GCC_FLAGS} ${DEBUG_FLAGS} \
-lutil

ifeq (${UNAME_S},OpenBSD)
LINK_FLAGS+=-liconv
endif

ifeq (${UNAME_S},Darwin)
LINK_FLAGS+=-liconv
endif

LIBPBE_MAKE_OPTIONS=
include ../libpbe.mk

CC_SRCS=$(sort $(notdir $(wildcard ${SRC_DIR}/*.cc)) static_content.cc)

BLOBFILES=anyterm.html anyterm.js anyterm.css copy.png paste.png copy.gif paste.gif

BLOBS=$(addsuffix .blob.o,$(BLOBFILES))

OBJS=$(addsuffix .o,$(notdir $(basename $(CC_SRCS))))

%.o: %.cc
$(CXX) $(CC_COMPILE_FLAGS) -c $<

ifdef HAVE_GNU_LD
%.blob.o: ../browser/%
cp $^ . ; $(LD) -r -b binary -o $@ $* ; rm $*

else
%.blob.c: ../browser/% ./mk_blob

./mk_blob $(subst .,_,$*) < $< > $@

mk_blob: mk_blob.c
$(CC) -o $@ $<
endif


anytermd: $(OBJS) $(BLOBS) $(LIBPBE_LIB)
$(CXX) -o $@ -I/usr/include/mysql -g -pipe -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -fasynchronous-unwind-tables -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -fwrapv -fPIC -DUNIV_LINUX -DUNIV_LINUX $(OBJS) -rdynamic -L/usr/lib/mysql -lmysqlclient -lz -lcrypt -lnsl -lm -lssl -lcrypto $(BLOBS) $(LINK_FLAGS)

%.d: %.cc
$(CXX) -MM -MG -MT $@ -MT $(<:%.cc=%.o) $(CPP_FLAGS) $(GCC_FLAGS) -o $@ $<

DEPENDS=$(addsuffix .d,$(basename $(OBJS)))

-include $(DEPENDS)

install: FORCE
install anytermd /usr/local/bin

clean: FORCE
$(RM) -f *.o *.blob.c static_content.cc

veryclean: clean
$(RM) *.d

.PHONY: default_target install FORCE


static_content.cc: ../scripts/mk_static_content.sh ../browser/*
PATH="$${PATH}:../scripts" ../scripts/mk_static_content.sh $(BLOBFILES) > $@

static_content.o: CPP_FLAGS+=-I../src

inih 的文件在 src 目录中,当我尝试执行“make”时,我收到以下错误:

Anyterm.o: In function `checkPermission(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, booking_info&)':
Anyterm.cc:(.text+0x4527): undefined reference to `INIReader::INIReader(std::basic_string<char, std::char_traits<char>, std::allocator<char> >)'
Anyterm.cc:(.text+0x4596): undefined reference to `INIReader::ParseError() const'
Anyterm.cc:(.text+0x46a7): undefined reference to `INIReader::Get(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >) const'
Anyterm.cc:(.text+0x4894): undefined reference to `INIReader::Get(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >) const'
Anyterm.cc:(.text+0x49e2): undefined reference to `INIReader::Get(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >) const'
Anyterm.cc:(.text+0x4af5): undefined reference to `INIReader::Get(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> >) const'

这让我相信链接器中缺少 inih 的库。我必须在 Makefile 中更改什么才能使用 inih 编译 anyterm?

非常感谢。

最佳答案

我对 Makefile 进行了这些更改并为我工作:

CPP_FLAGS=-I$(SRC_DIR)
...
FILTER=mk_blob.c
CC_SRCS=$(sort $(notdir $(wildcard ${SRC_DIR}/*.cc)) static_content.cc)
CC_SRCS+=$(sort $(filter-out ${FILTER},$(notdir $(wildcard ${SRC_DIR}/*.c))))
CC_SRCS+=$(sort $(notdir $(wildcard ${SRC_DIR}/*.cpp)))
...
%.o: %.c
$(CXX) $(CC_COMPILE_FLAGS) -c $<

%.o: %.cpp
$(CXX) $(CC_COMPILE_FLAGS) -c $<

感谢大家的帮助。

关于c++ - 添加新库以编译 anyterm。如何编辑 Makefile?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36894080/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com