添加新库以编译任何术语.如何编辑生成文件

Add new libraries to compile anyterm. How to edit Makefile?

本文关键字:编辑 文件 何编辑 新库 编译 任何 术语 添加      更新时间:2023-10-16

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

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

当我尝试将新的 inih 库添加到 Makefile 时,问题就来了。Inih的文件具有扩展名.c和.cpp,但是任何术语的文件具有扩展名.cc

生成文件是这样的:

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 中更改什么才能使用 inh 编译任何术语?

非常感谢。

我已经对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 $<

感谢大家的帮助。