# libxml **Repository Path**: han263012/libxml ## Basic Information - **Project Name**: libxml - **Description**: 学习libxml - **Primary Language**: C - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-19 - **Last Updated**: 2024-11-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 1 编译了Github的libxml2 .configure 编辑Makefile,修改 CFLAGS为CFLAGS = -g -O0 -DLIBXML_STATIC,LDFLAGS为-lws2_32 make 2 编译 example目录的例子, 重写了Makefile 测试可以运行 3 编译工具链 mingw $ make includekeyword gcc includekeyword.c -o includekeyword -I ../include -g -DLIBXML_STATIC -lxml2 -L ../.libs -lpthread -lws2_32 -lz -liconv