Last active
August 29, 2015 14:02
-
-
Save gondoi/73cb399abf6aef66f102 to your computer and use it in GitHub Desktop.
nokogiri install error
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[2014-06-03T18:26:20+00:00] FATAL: Stacktrace dumped to /tmp/kitchen/cache/chef-stacktrace.out | |
Chef Client failed. 11 resources updated in 67.458017893 seconds | |
[2014-06-03T18:26:20+00:00] ERROR: chef_gem[nokogiri] (xml::ruby line 35) had an error: Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension. | |
/opt/chef/embedded/bin/ruby extconf.rb | |
Building nokogiri using system libraries. | |
libxml2 version 2.6.21 or later is required! | |
*** extconf.rb failed *** | |
Could not create Makefile due to some reason, probably lack of | |
necessary libraries and/or headers. Check the mkmf.log file for more | |
details. You may need configuration options. | |
Provided configuration options: | |
--with-opt-dir | |
--with-opt-include | |
--without-opt-include=${opt-dir}/include | |
--with-opt-lib | |
--without-opt-lib=${opt-dir}/lib | |
--with-make-prog | |
--without-make-prog | |
--srcdir=. | |
--curdir | |
--ruby=/opt/chef/embedded/bin/ruby | |
--help | |
--clean | |
--use-system-libraries=true | |
--with-zlib-dir | |
--without-zlib-dir | |
--with-zlib-include | |
--without-zlib-include=${zlib-dir}/include | |
--with-zlib-lib | |
--without-zlib-lib=${zlib-dir}/lib | |
--with-xml2-dir | |
--without-xml2-dir | |
--with-xml2-include | |
--without-xml2-include=${xml2-dir}/include | |
--with-xml2-lib | |
--without-xml2-lib=${xml2-dir}/lib | |
--with-libxml-2.0-config | |
--without-libxml-2.0-config | |
--with-pkg-config | |
--without-pkg-config | |
--with-xslt-dir | |
--without-xslt-dir | |
--with-xslt-include | |
--without-xslt-include=${xslt-dir}/include | |
--with-xslt-lib | |
--without-xslt-lib=${xslt-dir}/lib | |
--with-libxslt-config | |
--without-libxslt-config | |
--with-exslt-dir | |
--without-exslt-dir | |
--with-exslt-include | |
--without-exslt-include=${exslt-dir}/include | |
--with-exslt-lib | |
--without-exslt-lib=${exslt-dir}/lib | |
--with-libexslt-config | |
--without-libexslt-config | |
Gem files will remain installed in /opt/chef/embedded/lib/ruby/gems/1.9.1/gems/nokogiri-1.6.2.1 for inspection. | |
Results logged to /opt/chef/embedded/lib/ruby/gems/1.9.1/gems/nokogiri-1.6.2.1/ext/nokogiri/gem_make.out | |
[2014-06-03T18:26:20+00:00] FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited unsuccessfully (exit code 1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package configuration for libxml-2.0 is not found | |
package configuration for libxslt is not found | |
package configuration for libexslt is not found | |
"gcc -o conftest -I/opt/chef/embedded/include/ruby-1.9.1/x86_64-linux -I/opt/chef/embedded/include/ruby-1.9.1/ruby/backward -I/opt/chef/embedded/include/ruby-1.9.1 -I. -I/opt/chef/embedded/include -I/opt/chef/embedded/include -O3 -g -pipe -fPIC -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline conftest.c -L. -L/opt/chef/embedded/lib -Wl,-R/opt/chef/embedded/lib -L/opt/chef/embedded/lib -Wl,-R/opt/chef/embedded/lib -L. -Wl,-rpath,/opt/chef/embedded/lib -L/opt/chef/embedded/lib -rdynamic -Wl,-export-dynamic -L/opt/chef/embedded/lib -Wl,-R/opt/chef/embedded/lib -Wl,-R -Wl,/opt/chef/embedded/lib -L/opt/chef/embedded/lib -lruby -lpthread -lrt -ldl -lcrypt -lm -lc " | |
checked program was: | |
/* begin */ | |
1: #include "ruby.h" | |
2: | |
3: int main(int argc, char **argv) | |
4: { | |
5: return 0; | |
6: } | |
/* end */ | |
"gcc -E -I/opt/chef/embedded/include/ruby-1.9.1/x86_64-linux -I/opt/chef/embedded/include/ruby-1.9.1/ruby/backward -I/opt/chef/embedded/include/ruby-1.9.1 -I. -I/opt/chef/embedded/include -I/opt/chef/embedded/include -O3 -g -pipe -fPIC -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline conftest.c -o conftest.i" | |
conftest.c:3:31: fatal error: libxml/xmlversion.h: No such file or directory | |
compilation terminated. | |
checked program was: | |
/* begin */ | |
1: #include "ruby.h" | |
2: | |
3: #include <libxml/xmlversion.h> | |
4: | |
5: #if LIBXML_VERSION < 20621 | |
6: #error libxml2 is too old | |
7: #endif | |
/* end */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment