tinyxml
http://www.grinninglizard.com/tinyxmldocs/tutorial0.html
http://libxmlplusplus.sourceforge.net/
编译tinyxml,修改Makefile
1、-fPIC
DEBUG_CFLAGS := -Wall -Wno-format -g -DDEBUG -fPIC
RELEASE_CFLAGS := -Wall -Wno-unknown-pragmas -Wno-format -O3 -fPIC
2、 libtinyxml.a
#OUTPUT := xmltest
OUTPUT := libtinyxml.a
3、output
${OUTPUT}: ${OBJS}
#${LD} -o $@ ${LDFLAGS} ${OBJS} ${LIBS} ${EXTRA_LIBS}
${AR} $@ ${LDFLAGS} ${OBJS} ${LIBS} ${EXTRA_LIBS}
4、xmltest
#xmltest.o: tinyxml.h tinystr.h
5、tinyxml2读写XML文件的例程
https://blog.csdn.net/zhawk/article/details/60880036
6、tinyxml2 demo