Fap*_*iko 3 ruby gem rubygems makefile nokogiri
正如标题所说,它似乎没有失败,因为缺少libxml2或libxslt.我不确定该怎么做错误.(得到它?因为问题是在制作过程中?嘿嘿......)
Anywho,这是我得到的输出.任何想法,将不胜感激:
Building native extensions. This could take a while...
ERROR: Error installing nokogiri:
ERROR: Failed to build gem native extension.
/usr/bin/ruby1.9.1 extconf.rb
extconf.rb:10: Use RbConfig instead of obsolete and deprecated Config.
checking for libxml/parser.h... yes
checking for libxslt/xslt.h... yes
checking for libexslt/exslt.h... yes
checking for iconv_open() in iconv.h... yes
checking for xmlParseDoc() in -lxml2... yes
checking for xsltParseStylesheetDoc() in -lxslt... yes
checking for exsltFuncRegister() in -lexslt... yes
checking for xmlHasFeature()... yes
checking for xmlFirstElementChild()... yes
checking for xmlRelaxNGSetParserStructuredErrors()... yes
checking for xmlRelaxNGSetParserStructuredErrors()... yes
checking for xmlRelaxNGSetValidStructuredErrors()... yes
checking for xmlSchemaSetValidStructuredErrors()... yes
checking for xmlSchemaSetParserStructuredErrors()... yes
creating Makefile
make
compiling xml_element_content.c
compiling xml_relax_ng.c
compiling xml_cdata.c
compiling xml_sax_parser_context.c
compiling xml_node_set.c
compiling xml_text.c
compiling xml_sax_parser.c
compiling xml_attribute_decl.c
compiling nokogiri.c
nokogiri.c: In function ‘ruby_strdup’:
nokogiri.c:43:31: warning: conversion to ‘size_t’ from ‘long int’ may change the sign of the result [-Wsign-conversion]
compiling xml_entity_reference.c
compiling xml_node.c
compiling xml_xpath_context.c
xml_xpath_context.c: In function ‘xpath_generic_exception_handler’:
xml_xpath_context.c:184:3: error: format not a string literal and no format arguments [-Werror=format-security]
cc1: some warnings being treated as errors
make: *** [xml_xpath_context.o] Error 1
Gem files will remain installed in /var/lib/gems/1.9.1/gems/nokogiri-1.5.0 for inspection.
Results logged to /var/lib/gems/1.9.1/gems/nokogiri-1.5.0/ext/nokogiri/gem_make.out
Run Code Online (Sandbox Code Playgroud)
对于上下文,我昨晚从Ubuntu 12.04升级到12.10.我之前在这个盒子上构建了Nokogiri本机扩展,但我不知道它是否是相同的版本.
我还检查了我在第二篇文章中指定的所有软件包" 错误安装nokogiri 1.5.0 with rails 3.1.0和ubuntu "无济于事.
小智 7
花了我一些时间来弄清楚如何追加cflags.这是我对nokogiri 1.4.7的命令:
sudo gem install nokogiri -v '1.4.7' -- --with-cflags=\"-Wformat-nonliteral -Wno-format-security\"
Run Code Online (Sandbox Code Playgroud)
小智 5
您是否尝试过为nokogiri安装以下依赖项?
# nokogiri requirements
sudo apt-get install libxslt-dev libxml2-dev
sudo gem install nokogiri
Run Code Online (Sandbox Code Playgroud)
小智 5
如果您正在尝试安装Nokogiri <1.5.4,那么在Ubuntu 12等强化的Debian系统上你会遇到问题.
有关根本问题的详细信息,请访问:https://github.com/sparklemotion/nokogiri/issues/680
您应该能够升级到1.5.4或更高版本并安装没有此问题.
或者,您应该能够在gem-install时设置CFLAGS环境变量以包含字符串:
-Wno-error=format-security
Run Code Online (Sandbox Code Playgroud)
要么
-Wformat-nonliteral -Wno-format-security
Run Code Online (Sandbox Code Playgroud)
祝好运!