- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在 FreeBSD 10.1-RELEASE 上从 libxml++ 构建示例代码,但在链接库时出现 undefined reference to Glib::...
错误。在 CentOS 6.5 和 7.0 上编译的代码没有错误。启用链接器详细模式时,似乎找到了所有 glib 库。我尝试重新安装 glib 库几次,但没有任何改变。
对于编译失败有什么建议吗?
下面是源代码和 makefile。
主.cc:
#include <libxml++/libxml++.h>
#include <iostream>
void print_indentation(unsigned int indentation) {
for (unsigned int i = 0; i < indentation; ++i)
std::cout << " ";
}
void print_node(const xmlpp::Node* node, unsigned int indentation = 0) {
std::cout << std::endl; //Separate nodes by an empty line.
const xmlpp::ContentNode* nodeContent = dynamic_cast<const xmlpp::ContentNode*>(node);
const xmlpp::TextNode* nodeText = dynamic_cast<const xmlpp::TextNode*>(node);
const xmlpp::CommentNode* nodeComment = dynamic_cast<const xmlpp::CommentNode*>(node);
if (nodeText && nodeText->is_white_space()) //Let's ignore the indenting - you don't always want to do this.
return;
Glib::ustring nodename = node->get_name();
if (!nodeText && !nodeComment && !nodename.empty()) //Let's not say "name: text".
{
print_indentation(indentation);
std::cout << "Node name = " << node->get_name() << std::endl;
std::cout << "Node name = " << nodename << std::endl;
} else if (nodeText) //Let's say when it's text. - e.g. let's say what that white space is.
{
print_indentation(indentation);
std::cout << "Text Node" << std::endl;
}
//Treat the various node types differently:
if (nodeText) {
print_indentation(indentation);
std::cout << "text = \"" << nodeText->get_content() << "\"" << std::endl;
} else if (nodeComment) {
print_indentation(indentation);
std::cout << "comment = " << nodeComment->get_content() << std::endl;
} else if (nodeContent) {
print_indentation(indentation);
std::cout << "content = " << nodeContent->get_content() << std::endl;
} else if (const xmlpp::Element* nodeElement = dynamic_cast<const xmlpp::Element*>(node)) {
//A normal Element node:
//line() works only for ElementNodes.
print_indentation(indentation);
std::cout << " line = " << node->get_line() << std::endl;
//Print attributes:
const xmlpp::Element::AttributeList& attributes = nodeElement->get_attributes();
for (xmlpp::Element::AttributeList::const_iterator iter = attributes.begin(); iter != attributes.end(); ++iter) {
const xmlpp::Attribute* attribute = *iter;
print_indentation(indentation);
std::cout << " Attribute " << attribute->get_name() << " = " << attribute->get_value() << std::endl;
}
const xmlpp::Attribute* attribute = nodeElement->get_attribute("title");
if (attribute) {
std::cout << "title found: =" << attribute->get_value() << std::endl;
}
}
if (!nodeContent) {
//Recurse through child nodes:
xmlpp::Node::NodeList list = node->get_children();
for (xmlpp::Node::NodeList::iterator iter = list.begin(); iter != list.end(); ++iter) {
print_node(*iter, indentation + 2); //recursive
}
}
}
int main(int argc, char* argv[]) {
std::string filepath;
if (argc > 1)
filepath = argv[1]; //Allow the user to specify a different XML file to parse.
else
filepath = "example.xml";
try {
xmlpp::DomParser parser;
parser.set_validate();
parser.set_substitute_entities(); //We just want the text to be resolved/unescaped automatically.
parser.parse_file(filepath);
if (parser) {
//Walk the tree:
const xmlpp::Node* pNode = parser.get_document()->get_root_node(); //deleted by DomParser.
print_node(pNode);
}
} catch (const std::exception& ex) {
std::cout << "Exception caught: " << ex.what() << std::endl;
}
return 0;
}
生成文件:
OBJDIR=.obj
OBJS_MAIN = $(OBJDIR)/main.o
OBJS_ALL = $(OBJS_MAIN)
default: ao3
CC = g++48
#CENTOS_VERSION=$(shell sed 's/[^0-9]*\([0-9]*\)\.\([0-9]\).*/\1\2/' < /etc/redhat-release )
CENTOS_VERSION=70
CFLAGS_GS = -DWITH_OPENSSL -DWITH_GZIP -DWITH_CDATA -D CENTOS_VERSION=$(CENTOS_VERSION) -pthread
# -Wl,--verbose
OFLAGS= \
-Wl,--verbose \
-L/usr/local/lib \
-L "/usr/lib64/mysql" \
-L "/usr/lib/mysql" \
-L "/usr/local/lib/mysql" \
-L "/usr/lib64" \
-L "/usr/lib" \
-L "/usr/share/axiscpp/lib" \
-L "/usr/local/axis/lib" \
-L "/usr/local/lib/amadeus_2_1_39_5" \
-lboost_iostreams \
-lboost_date_time \
-lmysqlclient \
-lxml++-2.6 \
-lxml2 \
-lglibmm-2.4 \
-lgobject-2.0 \
-lgmodule-2.0 \
-lglib-2.0 \
-lloki \
-liconv\
-lpcre \
-lsigc-2.0 \
-lSockets \
-lssl \
-lintl \
-lffi \
-llzma \
-lpthread \
-lexpat \
-lbz2 \
-lglib \
-lz \
-luuid \
-lthr \
-lc++ \
-lm \
-lcxxrt \
-lgcc_s \
-lc
ifeq ($(CENTOS_VERSION),65)
OFLAGS += -lboost_system
endif
ifeq ($(CENTOS_VERSION),70)
OFLAGS += -lboost_system
OFLAGS += -lcrypto
OFLAGS += -lboost_filesystem
endif
EXTCFLAGS := -g
LDFLAGS= -L/usr/local/lib
# -Weffc++
CFLAGS= $(EXTCFLAGS) \
-Wall \
-Werror \
-Wextra \
-D LARGEFILE64_SOURCE \
-D FILE_OFFSET_BITS=64 \
-D _UP_UNIX_ \
-D CNT_VERSION=2_3 \
-D LOKI_OBJECT_LEVEL_THREADING \
-D CENTOS_VERSION=$(CENTOS_VERSION) \
-isystem"/usr/include/" \
-isystem"/usr/local/include/" \
-isystem"/usr/include/libxml++-2.6" \
-isystem"/usr/local/include/libxml++-2.6" \
-isystem"/usr/local/include/libxml++-2.6/include" \
-isystem"/usr/lib/libxml++-2.6/include" \
-isystem"/usr/local/lib/libxml++-2.6/include" \
-isystem"/usr/lib64/libxml++-2.6/include" \
-isystem"/usr/include/glibmm-2.4" \
-isystem"/usr/local/include/glibmm-2.4" \
-isystem"/usr/lib/glibmm-2.4/include" \
-isystem"/usr/local/lib/glibmm-2.4/include" \
-isystem"/usr/lib64/glibmm-2.4/include" \
-isystem"/usr/local/include/glib-2.0/" \
-isystem"/usr/include/glib-2.0/" \
-isystem"/usr/lib/glib-2.0/include" \
-isystem"/usr/local/lib/glib-2.0/include" \
-isystem"/usr/lib64/glib-2.0/include" \
-isystem"/usr/lib/glib/include" \
-isystem"/usr/lib64/glib/include" \
-isystem"/usr/local/include/glib-1.2" \
-isystem"/usr/include/mysql" \
-isystem"/usr/local/include/mysql"
$(OBJDIR)/%.o: %.cc
@mkdir -p $(@D)
$(CC) -MMD -MP -c $(CFLAGS) $(INCLUDE) -o $@ $<
@echo -n '.' >> "$(DOTSFILE)"
@curr=`wc -c < $(DOTSFILE)`; max=`cat $(MAXFILE)`; echo -e "\033[1m$$curr/$$max\033[0m"
$(OBJDIR)/main.o: main.cc
@mkdir -p $(OBJDIR)
$(CC) -MMD -MP -c $(CFLAGS) $(INCLUDE) -o $@ $<
-include $(OBJS_ALL:.o=.d)
DOTSFILE := /dev/null
MAXFILE := /dev/null
help:
@echo 'ao3, test, profile, clean, cleantest, cleanprofile'
@echo 'CentOS version: '$(CENTOS_VERSION)
ao3: $(OBJS_ALL)
$(CC) --verbose -o ao3 -Wl,--start-group $(OBJS_ALL) $(OFLAGS) -Wl,--end-group
test: $(OBJS_TEST_ALL)
$(CC) -o ao3_test $(OBJS_TEST_ALL) $(OFLAGS)
profile: $(OBJS_PROFILE_ALL)
$(CC) -o ao3_profile $(OBJS_PROFILE_ALL) $(OFLAGS)
clean:
rm -f $(wildcard $(OBJS_ALL) ao3 $(OBJS_ALL:.o=.d))
find $(OBJDIR) -type d -empty -delete
cleantest:
rm -f $(wildcard $(OBJS_TEST) ao3_test $(OBJS_TEST:.o=.d))
find $(OBJDIR) -type d -empty -delete
cleanprofile:
rm -f $(wildcard $(OBJS_PROFILE) ao3_profile $(OBJS_PROFILE:.o=.d))
find $(OBJDIR) -type d -empty -delete
最佳答案
所以问题是 glibmm 是由 clang 编译的,而我正在使用 gcc 进行编译。当使用 c++ 而不是 g++48 进行编译时,它工作正常。
关于c++ - 在 FreeBSD 上构建 lxml 示例时未定义对 glib 的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27783834/
我有以下xml文件 10.10.0.135::3111 10.10.0.130::3111 10.10.0.129::3111 10.
我已经为 PyPy 创建了一个 virtualenv: virtualenv test -p `which pypy` source test/bin/activate 我安装了以下依赖项: sudo
我正在尝试使用 lxml 的 ElementTree etree 在我的 xml 文档中查找特定标签。标签如下所示: 12 我希望使用 etree.find('text:statedAge
在 python 3.5 项目中,我必须读取一些 xml 文件,因此我决定使用 lxml 库。由于我正在阅读文件,因此根据文档执行此操作的最有效方法是使用 lxml.etree.parse(...)
执行 pip install lxml 或 pip install pyquery 会出现此错误: gcc: error trying to exec 'cc1': execvp: No such f
我正在使用下面的代码获取一个部分的所有 html 内容以保存到数据库 el = doc.get_element_by_id('productDescription') lxml.html.tostri
我想以可区分的方式打印出 etree 的树结构(由 html 文档形成)(意味着两个 etree 应该以不同的方式打印出来)。 我所说的结构是指树的“形状”,基本上是指所有标签,但没有属性,也没有文本
谁能解释为什么第一次调用 root.cssselect() 有效,而第二次失败? from lxml.html import fromstring from lxml import etree htm
我收到此错误“ImportError: No module named lxml”,即使确实安装了 LXML。具体来说,它安装在项目的 python Virtualenv 中。最终我正在研究 Pyth
我在 Windows 32 位上使用 Anaconda v4.2 和 Python 3.5,并想使用 lxml etree。我的 Anaconda 发行版包括 lxml 3.6.4,但我的 IDE(P
我有一个脚本,可以从 URL 列表的 XML 文件中提取一些术语。所有 URL 都可以访问 XML 数据。 它在第一次正确打开、解析和提取时工作正常,但随后在过程中被某些 XML 文件中断并出现此错误
我正在使用 mechanize/cookiejar/lxml 来读取页面,它适用于某些页面但不适用于其他页面。我在其中遇到的错误是标题中的错误。我不能在这里发布页面,因为它们不是 SFW,但是有没有办
这是一个基本的问题,我实际上在文档中找不到它:-/ 如下: img = house_tree.xpath('//img[@id="mainphoto"]')[0] 如何获取 的 HTML标记? 我尝
我只想说,这个问题我已经在Pip is already installed: but I am getting no module named lxml看到了并且已经看到关于以非 root 用户身份安
我通过 pip 安装了 lxml 3.3.5。现在我在运行一些 Django 测试时遇到了问题: Traceback (most recent call last): File "manage.p
我有一个 Django 应用程序,其中包含 Tastypie 提供的 RESTFull 服务。我使用 easy_install 安装 lxml 和 defusedxml,这样我就可以使用 xml 而不
我正在使用 lxml etree 创建 xml 或 REST 调用。我有命名空间的问题,因为如果没有正确制定,我会从服务器收到语法错误。 正如您在以下 2 个示例中所看到的,我应该得到例如 ns1、n
我对导航具有 lxml.etree namespace 的 xml 文档感到有些困惑。 .我已经看到了一些关于这个主题的主题( 1 、 2 )以及 lxml docs但仍然没有想出答案。 xml =
由于各种原因,我试图从lxml.html.fromstring()切换到lxml.html.html5parser.document_fromstring()。两者之间的最大区别是,第一个返回lxml
我需要通过向现有元素添加子元素来修改现有的 xml 文件。我使用 lxml 库。 Eric Idle 999-999-999 555-555-555
我是一名优秀的程序员,十分优秀!