linux tinyxml2怎么编译

linux tinyxml2怎么编译,第1张

1.首先,要到官网上去把tinyxml库下载下来,网址为:点击打开链接:http://sourceforge.net/projects/tinyxml/

2.把下载的tinyxml库解压缩,我这里是解压缩到/opt 目录下

3.进入到解压缩目录下,我们会发现Tinyxml在Windows 下是使用微软的VS 来生成的库,因为其中有tinyxml.sln,tinyxml_lib.vcxproj,tinyxmlSTL.vcxproj等文件,当然,Tinyxml是开源的,所以它也有一个Makefile,用来生成Linux下的Tinyxml库。整个Tinyxml源码项目其实是由2个头文件和一个4个C++源文件(.cpp)组成:tinystr.h,tinyxml.h,tinystr.cpp,tinyxml.cpp,tinyxmlerror.cpp,tinyxmlparser.cpp。其中还有一个xmltest.cpp文件,只是一个测试代码,有兴趣的话,大家可以打开研究它。好了,现在介绍怎么修改它的Makefile:

(1)使用vim或者其他的编辑器打开Makefile文件

(2)将其中的注释为Targets of the build的下一行OUTPUT := xmltest一行修改为:OUTPUT := libtinyxml.a 

(3)将其中的注释为Source files 的下一行SRCS:=tinyxml.cpp tinyxml-parser.cpp xmltest.cpp tinyxmlerror.cpp tinystr.cpp中的xmltest.cpp删除,因为它只是一个测试源文件,不需要编译。

(4)将其中的Output的下一行的${LD} -o $@ ${LDFLAGS} ${OBJS} ${LIBS} ${EXTRA_LIBS}修改为:${AR} $@ ${LDFLAGS} ${OBJS} ${LIBS} ${EXTRA_LIBS}。大致改成这样

${OUTPUT}: ${OBJS}           ${AR} $@ ${LDFLAGS} ${OBJS} ${LIBS} ${EXTRA_LIBS}   #       ${LD} -o $@ ${LDFLAGS} ${OBJS} ${LIBS} ${EXTRA_LIBS} 

(5)将Makefile的倒数第二行 xmltest.o:tinyxml.h tinystr.h,注释掉,因为不需要将演示程序添加到静态库中。然后保存退出。

(6)在终端下进入Makefile所在目录,执行make命令编译,即可在Makefile所在目录下生成libtinyxml.a文件。

4.接下来就可以使用这个静态库了:$ g++ -o xmltest xmltest.cpp libtinyxml.a      注意:将使用的静态库放在源文件后面即可,如果静态库文件不在当前目录,应该使用它的绝对路径或者用g++的参数-L来指定路径,因为编译器默认在当前目录下先查找指定的库文件。

修改后的Makefile (v 1.0.1) 记录如下:

[plain] view plain copy print?

#****************************************************************************

#

# Makefile for TinyXml test.

# Lee Thomason

# www.grinninglizard.com  

#

# This is a GNU make (gmake) makefile

#****************************************************************************

# DEBUG can be set to YES to include debugging info, or NO otherwise

DEBUG          := NO

# PROFILE can be set to YES to include profiling info, or NO otherwise

PROFILE        := NO

# TINYXML_USE_STL can be used to turn on STL support. NO, then STL

# will not be used. YES will include the STL files.

TINYXML_USE_STL := NO

#****************************************************************************

CC     := gcc

CXX    := g++

LD     := g++

AR     := ar rc

RANLIB := ranlib

DEBUG_CFLAGS     := -Wall -Wno-format -g -DDEBUG

RELEASE_CFLAGS   := -Wall -Wno-unknown-pragmas -Wno-format -O3

LIBS         :=

DEBUG_CXXFLAGS   := ${DEBUG_CFLAGS}

RELEASE_CXXFLAGS := ${RELEASE_CFLAGS}

DEBUG_LDFLAGS    := -g

RELEASE_LDFLAGS  :=

ifeq (YES, ${DEBUG})

CFLAGS       := ${DEBUG_CFLAGS}

CXXFLAGS     := ${DEBUG_CXXFLAGS}

LDFLAGS      := ${DEBUG_LDFLAGS}

else

CFLAGS       := ${RELEASE_CFLAGS}

CXXFLAGS     := ${RELEASE_CXXFLAGS}

LDFLAGS      := ${RELEASE_LDFLAGS}

endif

ifeq (YES, ${PROFILE})

CFLAGS   := ${CFLAGS} -pg -O3

CXXFLAGS := ${CXXFLAGS} -pg -O3

LDFLAGS  := ${LDFLAGS} -pg

endif

#****************************************************************************

# Preprocessor directives

#****************************************************************************

ifeq (YES, ${TINYXML_USE_STL})

DEFS := -DTIXML_USE_STL

else

DEFS :=

endif

#****************************************************************************

# Include paths

#****************************************************************************

#INCS := -I/usr/include/g++-2 -I/usr/local/include

INCS :=

#****************************************************************************

# Makefile code common to all platforms

#****************************************************************************

CFLAGS   := ${CFLAGS}   ${DEFS}

CXXFLAGS := ${CXXFLAGS} ${DEFS}

#****************************************************************************

# Targets of the build

#****************************************************************************

OUTPUT := libtinyxml.a

all: ${OUTPUT}

#****************************************************************************

# Source files

#****************************************************************************

SRCS := tinyxml.cpp tinyxmlparser.cpp tinyxmlerror.cpp tinystr.cpp

# Add on the sources for libraries

SRCS := ${SRCS}

OBJS := $(addsuffix .o,$(basename ${SRCS}))

#****************************************************************************

# Output

#****************************************************************************

${OUTPUT}: ${OBJS}

${AR} $@ ${LDFLAGS} ${OBJS} ${LIBS} ${EXTRA_LIBS}

#   ${LD} -o $@ ${LDFLAGS} ${OBJS} ${LIBS} ${EXTRA_LIBS}

#****************************************************************************

# common rules

#****************************************************************************

# Rules for compiling source files to object files

%.o : %.cpp

${CXX} -c ${CXXFLAGS} ${INCS} $< -o $@

%.o : %.c

${CC} -c ${CFLAGS} ${INCS} $< -o $@

dist:

bash makedistlinux

clean:

-rm -f core ${OBJS} ${OUTPUT}

depend:

#makedepend ${INCS} ${SRCS}

tinyxml.o: tinyxml.h tinystr.h

tinyxmlparser.o: tinyxml.h tinystr.h

tinyxmlerror.o: tinyxml.h tinystr.h

在TinyXML中,根据XML的各种元素来定义了一些类: TiXmlBase:整个TinyXML模型的基类。 TiXmlAttribute:对应于XML中的元素的属性。 TiXmlNode:对应于DOM结构中的节点。 TiXmlComment:对应于XML中的注释 TiXmlDeclaration:对应于XML中的申明

tinyxml设置特殊字符不转译可以如下 *** 作:

1、打开pycharm,新建一个工程和tinyxml文件。

2、打印一段话,输入print添加内容。

3、转义字符换行即可进行转译。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/7932940.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-11
下一篇 2023-04-11

发表评论

登录后才能评论

评论列表(0条)

保存