在官網上有一個例子,http://xmlsoft.org/example.html
用libxml2 去解析 xml 文件。
在下載的源代碼目錄下,libxml2-2.9.2/example,有此範例 ,gjobread.c 和 gjobs.xml
makefile 的寫法
CFLAGS=-g -Wall -O3 curl-config --cflags
-I/usr/include/libxml2
LDLIBS=curl-config --libs
-lxml2 -lpthread
CC=gcc
編譯,
make gjobread
使用方式及結果
提供了兩個編譯參數輔助工作,
$ xml2-config --libs
-lxml2
$ xml2-config --cflags
-I/usr/include/libxml2
可以放在makefile裏。