sparklemotion / nokogiri

Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.
https://nokogiri.org/
MIT License
6.14k stars 896 forks source link

nokogiri fails to install on RHEL 7.1 LE & Ubuntu 14.04 on ppc64le arch #1280

Closed SriramaSharma closed 8 years ago

SriramaSharma commented 9 years ago

On an RHEL 7.1 LE (ppc64le) OS, I tried installing 'nokogiri' gem using "gem install nokogiri" and the install fails while building the embedded libxslt sources (v1.1.28). Attached are the gem_make.out and libxslt 1.1.28 config error seen while building the native gems.

When I install below required libxml2 and libxslt rpms from the distro DVD and then try "gem install nokogiri -- --use-system-libraries", the installation succeeds.

[u0011847@sys-71809 ~]$ rpm -qa | grep libxslt libxslt-devel-1.1.28-5.ael7b.ppc64le libxslt-1.1.28-5.ael7b.ppc64le [u0011847@sys-71809 ~]$ rpm -qa | grep libxml libxml2-devel-2.9.1-5.ael7b.1.ppc64le libxml2-python-2.9.1-5.ael7b.1.ppc64le libxml2-2.9.1-5.ael7b.1.ppc64le [u0011847@sys-71809 ~]$

Please note that the version of libxslt available as part of RHEL 7.1 LE distro DVD and the version of embedded libxslt is the same.

First level of probe into the logs shows that the 'config.guess' and 'config.sub' in the embedded libxslt 1.1.28 are out-dated and needs to be patched / requires an update.

Here is short URL which has details on how to get LoP Hardware Access: https://ibm.biz/LoP_Access

nokogiri_gem_make out nokogiri_libxslt_1 1 28_configure log

SriramaSharma commented 9 years ago

There are multiple approaches to get the build sail through on ppc64le:

Approach 1 -> First install libxslt-1.1.28-5.ael7b.ppc64le rpm that is part of RHEL 7.1 distro -> Then build nokogiri gem by making use of the system library : "gem install nokogiri -- --use-system-libraries"

Approach 2 -> Build a local copy of the libxslt either by downloading the latest tarball and patching it OR with the latest git checkout of libxslt (which builds fine as right updated config.guess would get picked up by automake) -> Then build nokogiri using "--with-xslt-dir=DIR / --with-xslt-config=CONFIG " options and point to the dir where local libxslt is built.

Both these approaches have pros & cons: Pros : The build is successful. Cons : As per http://www.nokogiri.org/tutorials/installing_nokogiri.html#using_your_system_libraries this may be unsupported & users are warned on the same.

Approach 3 which seems to be the right approach is to -> Patch nokogiri to pull new libxslt tarball (would require a newer tarball with updated config.guess be made available at ftp://ftp.xmlsoft.org/libxml2/) OR -> Ensure that after un-tarring the current libxslt tarball, config.guess is either patched / picked rightly from the system (either from latest automake / libtool or redhat-rpm-config ) which has support for ppc64le arch.

hernan-erasmo commented 9 years ago

After reading the solutions @SriramaSharma posted, I agree that the one that requires least interaction from the user side is to patch the config.guess file after libxslt extraction, but I couldn't find a way to do that from ruby. We'd need to step into Mini Portile and alter it's cook() method, and put our extracting and patching logic in there somewhere between these two lines.

I've noticed that there are several patches applied to libxslt after extracting it, so a possible fix would be to modify config.guess through one of those patches. What I did was 1- Downloaded the latest tarball of libxslt from here 2- Git init inside it. 3- Replaced the original config.guess file for the new one link here 4- Commited that change and git diff'd it's output to a file called update-config-guess.patch

Now we've got a patch that once applied to libxslt will update it's config.guess file to the latest version. The problem now is to find the right place to put it. The most probable place would be the /patches/libxslt directory, but here's where things get confusing. Nokogiri's github repo has a /patches/libxslt directory that holds all the git patches to be applied to libsxlt, but the gem has a different structure. It holds the patch files inside /ports/patches/libxslt directory.

So, in order to test and see if the installation succeded after patching config.guess file, what I did was: 8- Downloaded the latest nokogiri gem (gem fetch nokogiri) 9- Unpacked it and generated a gemfile (gem unpack nokogiri-1.6.6.2.gem && gem spec nokogiri-1.6.6.2.gem --ruby > nokogiri-1.6.6.2/nokogiri-1.6.6.2.gemspec) 10- Pasted the update-config-guess.patch inside /ports/patches/libxslt 11- Added update-config-guess.patch to the list of files defined inside the Gem::Specification block of the gemfile 12- Built the gem again with the new gemfile 13- gem install -V --local ./nokogiri-1.6.6.2.gem

The output is here:

/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/.autotest
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/.cross_rubies
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/.editorconfig
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/.gemtest
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/.travis.yml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/CHANGELOG.ja.rdoc
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/CHANGELOG.rdoc
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/C_CODING_STYLE.rdoc
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/Gemfile
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/Manifest.txt
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/README.ja.rdoc
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/README.rdoc
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ROADMAP.md
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/Rakefile
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/STANDARD_RESPONSES.md
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/Y_U_NO_GEMSPEC.md
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/bin/nokogiri
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/build_all
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/dependencies.yml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/depend
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/extconf.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/html_document.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/html_document.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/html_element_description.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/html_element_description.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/html_entity_lookup.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/html_entity_lookup.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/html_sax_parser_context.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/html_sax_parser_context.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/html_sax_push_parser.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/html_sax_push_parser.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/nokogiri.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/nokogiri.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_attr.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_attr.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_attribute_decl.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_attribute_decl.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_cdata.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_cdata.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_comment.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_comment.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_document.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_document.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_document_fragment.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_document_fragment.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_dtd.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_dtd.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_element_content.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_element_content.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_element_decl.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_element_decl.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_encoding_handler.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_encoding_handler.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_entity_decl.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_entity_decl.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_entity_reference.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_entity_reference.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_io.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_io.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_libxml2_hacks.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_libxml2_hacks.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_namespace.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_namespace.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_node.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_node.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_node_set.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_node_set.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_processing_instruction.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_processing_instruction.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_reader.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_reader.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_relax_ng.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_relax_ng.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_sax_parser.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_sax_parser.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_sax_parser_context.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_sax_parser_context.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_sax_push_parser.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_sax_push_parser.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_schema.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_schema.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_syntax_error.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_syntax_error.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_text.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_text.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_xpath_context.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_xpath_context.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xslt_stylesheet.c
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri/xslt_stylesheet.h
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/css.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/css/node.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/css/parser.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/css/parser.y
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/css/parser_extras.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/css/syntax_error.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/css/tokenizer.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/css/tokenizer.rex
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/css/xpath_visitor.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/decorators/slop.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/html.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/html/builder.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/html/document.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/html/document_fragment.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/html/element_description.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/html/element_description_defaults.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/html/entity_lookup.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/html/sax/parser.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/html/sax/parser_context.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/html/sax/push_parser.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/syntax_error.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/version.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/attr.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/attribute_decl.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/builder.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/cdata.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/character_data.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/document.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/document_fragment.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/dtd.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/element_content.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/element_decl.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/entity_decl.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/namespace.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/node.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/node/save_options.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/node_set.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/notation.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/parse_options.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/pp.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/pp/character_data.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/pp/node.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/processing_instruction.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/reader.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/relax_ng.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/sax.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/sax/document.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/sax/parser.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/sax/parser_context.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/sax/push_parser.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/schema.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/searchable.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/syntax_error.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/text.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/xpath.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/xpath/syntax_error.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/xpath_context.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xslt.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/nokogiri/xslt/stylesheet.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/lib/xsd/xmlparser/nokogiri.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/archives/libxml2-2.9.2.tar.gz
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/archives/libxslt-1.1.28.tar.gz
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxml2/0001-Revert-Missing-initialization-for-the-catalog-module.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxml2/0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0001-Adding-doc-update-related-to-1.1.28.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0003-Initialize-pseudo-random-number-generator-with-curre.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0004-EXSLT-function-str-replace-is-broken-as-is.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0006-Fix-str-padding-to-work-with-UTF-8-strings.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0007-Separate-function-for-predicate-matching-in-patterns.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0008-Fix-direct-pattern-matching.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0009-Fix-certain-patterns-with-predicates.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0014-Fix-for-bug-436589.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0015-Fix-mkdir-for-mingw.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/updated-config-guess.patch
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/sort-patches-by-date
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/suppressions/README.txt
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/suppressions/nokogiri_ree-1.8.7.358.supp
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/suppressions/nokogiri_ruby-1.8.7.370.supp
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/suppressions/nokogiri_ruby-1.9.2.320.supp
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/suppressions/nokogiri_ruby-1.9.3.327.supp
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/tasks/test.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/css/test_nthiness.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/css/test_parser.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/css/test_tokenizer.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/css/test_xpath_visitor.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/decorators/test_slop.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/2ch.html
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/address_book.rlx
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/address_book.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/atom.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/bar/bar.xsd
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/bogus.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/dont_hurt_em_why.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/encoding.html
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/encoding.xhtml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/exslt.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/exslt.xslt
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/foo/foo.xsd
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/metacharset.html
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/noencoding.html
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/po.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/po.xsd
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/saml/saml20assertion_schema.xsd
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/saml/saml20protocol_schema.xsd
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/saml/xenc_schema.xsd
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/saml/xmldsig_schema.xsd
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/shift_jis.html
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/shift_jis.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/shift_jis_no_charset.html
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/slow-xpath.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/snuggles.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/staff.dtd
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/staff.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/staff.xslt
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/test_document_url/bar.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/test_document_url/document.dtd
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/test_document_url/document.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/tlm.html
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/to_be_xincluded.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/valid_bar.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/files/xinclude.xml
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/helper.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/html/sax/test_parser.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/html/sax/test_parser_context.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/html/sax/test_push_parser.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/html/test_builder.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/html/test_document.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/html/test_document_encoding.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/html/test_document_fragment.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/html/test_element_description.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/html/test_named_characters.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/html/test_node.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/html/test_node_encoding.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/namespaces/test_additional_namespaces_in_builder_doc.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/namespaces/test_namespaces_aliased_default.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/namespaces/test_namespaces_in_builder_doc.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/namespaces/test_namespaces_in_cloned_doc.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/namespaces/test_namespaces_in_created_doc.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/namespaces/test_namespaces_in_parsed_doc.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/namespaces/test_namespaces_preservation.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/test_convert_xpath.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/test_css_cache.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/test_encoding_handler.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/test_memory_leak.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/test_nokogiri.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/test_reader.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/test_soap4r_sax.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/test_xslt_transforms.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/node/test_save_options.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/node/test_subclass.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/sax/test_parser.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/sax/test_parser_context.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/sax/test_push_parser.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_attr.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_attribute_decl.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_builder.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_c14n.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_cdata.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_comment.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_document.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_document_encoding.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_document_fragment.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_dtd.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_dtd_encoding.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_element_content.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_element_decl.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_entity_decl.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_entity_reference.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_namespace.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_node.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_node_attributes.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_node_encoding.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_node_inheritance.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_node_reparenting.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_node_set.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_parse_options.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_processing_instruction.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_reader_encoding.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_relax_ng.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_schema.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_syntax_error.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_text.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_unparented_node.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_xinclude.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xml/test_xpath.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xslt/test_custom_functions.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test/xslt/test_exception_handling.rb
/home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/test_all
Building native extensions.  This could take a while...
current directory: /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri
/home/hernan/.rvm/rubies/ruby-head/bin/ruby -r ./siteconf20150803-14177-12sxzkb.rb extconf.rb
checking if the C compiler accepts ... yes
Building nokogiri using packaged libraries.
checking for gzdopen() in -lz... yes
checking for iconv... yes
************************************************************************
IMPORTANT NOTICE:

Building Nokogiri with a packaged version of libxml2-2.9.2
with the following patches applied:
    - 0001-Revert-Missing-initialization-for-the-catalog-module.patch
    - 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch

Team Nokogiri will keep on doing their best to provide security
updates in a timely manner, but if this is a concern for you and want
to use the system library instead; abort this installation process and
reinstall nokogiri as follows:

    gem install nokogiri -- --use-system-libraries
        [--with-xml2-config=/path/to/xml2-config]
        [--with-xslt-config=/path/to/xslt-config]

If you are using Bundler, tell it to use the option:

    bundle config build.nokogiri --use-system-libraries
    bundle install

Note, however, that nokogiri is not fully compatible with arbitrary
versions of libxml2 provided by OS/package vendors.
************************************************************************
Extracting libxml2-2.9.2.tar.gz into tmp/powerpc64le-unknown-linux-gnu/ports/libxml2/2.9.2... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxml2/0001-Revert-Missing-initialization-for-the-catalog-module.patch...
Running 'patch' for libxml2 2.9.2... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxml2/0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch...
Running 'patch' for libxml2 2.9.2... OK
Running 'configure' for libxml2 2.9.2... OK
Running 'compile' for libxml2 2.9.2... OK
Running 'install' for libxml2 2.9.2... OK
Activating libxml2 2.9.2 (from /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/powerpc64le-unknown-linux-gnu/libxml2/2.9.2)...
************************************************************************
IMPORTANT NOTICE:

Building Nokogiri with a packaged version of libxslt-1.1.28
with the following patches applied:
    - 0001-Adding-doc-update-related-to-1.1.28.patch
    - 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch
    - 0003-Initialize-pseudo-random-number-generator-with-curre.patch
    - 0004-EXSLT-function-str-replace-is-broken-as-is.patch
    - 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch
    - 0007-Separate-function-for-predicate-matching-in-patterns.patch
    - 0008-Fix-direct-pattern-matching.patch
    - 0009-Fix-certain-patterns-with-predicates.patch
    - 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch
    - 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch
    - 0014-Fix-for-bug-436589.patch
    - 0015-Fix-mkdir-for-mingw.patch
    - updated-config-guess.patch

Team Nokogiri will keep on doing their best to provide security
updates in a timely manner, but if this is a concern for you and want
to use the system library instead; abort this installation process and
reinstall nokogiri as follows:

    gem install nokogiri -- --use-system-libraries
        [--with-xml2-config=/path/to/xml2-config]
        [--with-xslt-config=/path/to/xslt-config]

If you are using Bundler, tell it to use the option:

    bundle config build.nokogiri --use-system-libraries
    bundle install
************************************************************************
Extracting libxslt-1.1.28.tar.gz into tmp/powerpc64le-unknown-linux-gnu/ports/libxslt/1.1.28... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0001-Adding-doc-update-related-to-1.1.28.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0003-Initialize-pseudo-random-number-generator-with-curre.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0004-EXSLT-function-str-replace-is-broken-as-is.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0006-Fix-str-padding-to-work-with-UTF-8-strings.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0007-Separate-function-for-predicate-matching-in-patterns.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0008-Fix-direct-pattern-matching.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0009-Fix-certain-patterns-with-predicates.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0014-Fix-for-bug-436589.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0015-Fix-mkdir-for-mingw.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/patches/libxslt/updated-config-guess.patch...
Running 'patch' for libxslt 1.1.28... OK
Running 'configure' for libxslt 1.1.28... OK
Running 'compile' for libxslt 1.1.28... OK
Running 'install' for libxslt 1.1.28... OK
Activating libxslt 1.1.28 (from /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ports/powerpc64le-unknown-linux-gnu/libxslt/1.1.28)...
checking for main() in -llzma... no
checking for xmlParseDoc() in libxml/parser.h... yes
checking for xsltParseStylesheetDoc() in libxslt/xslt.h... yes
checking for exsltFuncRegister() in libexslt/exslt.h... 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
current directory: /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri
make "DESTDIR=" clean
current directory: /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri
make "DESTDIR="
compiling xml_attr.c
compiling html_sax_parser_context.c
compiling xml_relax_ng.c
compiling xml_node_set.c
compiling xml_attribute_decl.c
compiling xml_libxml2_hacks.c
compiling xml_document.c
compiling xml_element_content.c
compiling xml_cdata.c
compiling xml_syntax_error.c
compiling xml_dtd.c
compiling xml_sax_parser_context.c
compiling html_entity_lookup.c
compiling nokogiri.c
compiling xml_text.c
compiling xml_xpath_context.c
compiling xml_comment.c
compiling xml_processing_instruction.c
compiling html_document.c
compiling xml_sax_push_parser.c
compiling xslt_stylesheet.c
compiling html_element_description.c
compiling xml_sax_parser.c
compiling xml_document_fragment.c
compiling xml_entity_reference.c
compiling xml_node.c
compiling html_sax_push_parser.c
compiling xml_entity_decl.c
compiling xml_reader.c
compiling xml_io.c
compiling xml_schema.c
compiling xml_namespace.c
compiling xml_element_decl.c
compiling xml_encoding_handler.c
linking shared-object nokogiri/nokogiri.so
Cleaning files only used during build.
current directory: /home/hernan/.rvm/gems/ruby-head/gems/nokogiri-1.6.6.2/ext/nokogiri
make "DESTDIR=" install
/usr/bin/install -c -m 0755 nokogiri.so ./.gem.20150803-14177-1h98y3r/nokogiri
To see why this extension failed to compile, please check the mkmf.log which can be found here:

  /home/hernan/.rvm/gems/ruby-head/extensions/powerpc64le-linux/2.3.0/nokogiri-1.6.6.2/mkmf.log
/home/hernan/.rvm/gems/ruby-head/bin/nokogiri
Successfully installed nokogiri-1.6.6.2
Parsing documentation for nokogiri-1.6.6.2
Parsing sources...
  0% [ 1/179]  CHANGELOG.ja.rdoc
  1% [ 2/179]  CHANGELOG.rdoc
  1% [ 3/179]  C_CODING_STYLE.rdoc
  2% [ 4/179]  Manifest.txt
  2% [ 5/179]  README.ja.rdoc
  3% [ 6/179]  README.rdoc
  3% [ 7/179]  ROADMAP.md
  4% [ 8/179]  STANDARD_RESPONSES.md
  5% [ 9/179]  Y_U_NO_GEMSPEC.md
  5% [10/179]  ext/nokogiri/Makefile
  6% [11/179]  ext/nokogiri/depend
  6% [12/179]  ext/nokogiri/extconf.rb
  7% [13/179]  ext/nokogiri/html_document.c
  7% [14/179]  ext/nokogiri/html_document.h
  8% [15/179]  ext/nokogiri/html_document.o
  8% [16/179]  ext/nokogiri/html_element_description.c
  9% [17/179]  ext/nokogiri/html_element_description.h
 10% [18/179]  ext/nokogiri/html_element_description.o
 10% [19/179]  ext/nokogiri/html_entity_lookup.c
 11% [20/179]  ext/nokogiri/html_entity_lookup.h
 11% [21/179]  ext/nokogiri/html_entity_lookup.o
 12% [22/179]  ext/nokogiri/html_sax_parser_context.c
 12% [23/179]  ext/nokogiri/html_sax_parser_context.h
 13% [24/179]  ext/nokogiri/html_sax_parser_context.o
 13% [25/179]  ext/nokogiri/html_sax_push_parser.c
 14% [26/179]  ext/nokogiri/html_sax_push_parser.h
 15% [27/179]  ext/nokogiri/html_sax_push_parser.o
 15% [28/179]  ext/nokogiri/nokogiri.c
 16% [29/179]  ext/nokogiri/nokogiri.h
 16% [30/179]  ext/nokogiri/nokogiri.o
 17% [31/179]  ext/nokogiri/nokogiri.so
 17% [32/179]  ext/nokogiri/xml_attr.c
 18% [33/179]  ext/nokogiri/xml_attr.h
 18% [34/179]  ext/nokogiri/xml_attr.o
 19% [35/179]  ext/nokogiri/xml_attribute_decl.c
 20% [36/179]  ext/nokogiri/xml_attribute_decl.h
 20% [37/179]  ext/nokogiri/xml_attribute_decl.o
 21% [38/179]  ext/nokogiri/xml_cdata.c
 21% [39/179]  ext/nokogiri/xml_cdata.h
 22% [40/179]  ext/nokogiri/xml_cdata.o
 22% [41/179]  ext/nokogiri/xml_comment.c
 23% [42/179]  ext/nokogiri/xml_comment.h
 24% [43/179]  ext/nokogiri/xml_comment.o
 24% [44/179]  ext/nokogiri/xml_document.c
 25% [45/179]  ext/nokogiri/xml_document.h
 25% [46/179]  ext/nokogiri/xml_document.o
 26% [47/179]  ext/nokogiri/xml_document_fragment.c
 26% [48/179]  ext/nokogiri/xml_document_fragment.h
 27% [49/179]  ext/nokogiri/xml_document_fragment.o
 27% [50/179]  ext/nokogiri/xml_dtd.c
 28% [51/179]  ext/nokogiri/xml_dtd.h
 29% [52/179]  ext/nokogiri/xml_dtd.o
 29% [53/179]  ext/nokogiri/xml_element_content.c
 30% [54/179]  ext/nokogiri/xml_element_content.h
 30% [55/179]  ext/nokogiri/xml_element_content.o
 31% [56/179]  ext/nokogiri/xml_element_decl.c
 31% [57/179]  ext/nokogiri/xml_element_decl.h
 32% [58/179]  ext/nokogiri/xml_element_decl.o
 32% [59/179]  ext/nokogiri/xml_encoding_handler.c
 33% [60/179]  ext/nokogiri/xml_encoding_handler.h
 34% [61/179]  ext/nokogiri/xml_encoding_handler.o
 34% [62/179]  ext/nokogiri/xml_entity_decl.c
 35% [63/179]  ext/nokogiri/xml_entity_decl.h
 35% [64/179]  ext/nokogiri/xml_entity_decl.o
 36% [65/179]  ext/nokogiri/xml_entity_reference.c
 36% [66/179]  ext/nokogiri/xml_entity_reference.h
 37% [67/179]  ext/nokogiri/xml_entity_reference.o
 37% [68/179]  ext/nokogiri/xml_io.c
 38% [69/179]  ext/nokogiri/xml_io.h
 39% [70/179]  ext/nokogiri/xml_io.o
 39% [71/179]  ext/nokogiri/xml_libxml2_hacks.c
 40% [72/179]  ext/nokogiri/xml_libxml2_hacks.h
 40% [73/179]  ext/nokogiri/xml_libxml2_hacks.o
 41% [74/179]  ext/nokogiri/xml_namespace.c
 41% [75/179]  ext/nokogiri/xml_namespace.h
 42% [76/179]  ext/nokogiri/xml_namespace.o
 43% [77/179]  ext/nokogiri/xml_node.c
 43% [78/179]  ext/nokogiri/xml_node.h
 44% [79/179]  ext/nokogiri/xml_node.o
 44% [80/179]  ext/nokogiri/xml_node_set.c
 45% [81/179]  ext/nokogiri/xml_node_set.h
 45% [82/179]  ext/nokogiri/xml_node_set.o
 46% [83/179]  ext/nokogiri/xml_processing_instruction.c
 46% [84/179]  ext/nokogiri/xml_processing_instruction.h
 47% [85/179]  ext/nokogiri/xml_processing_instruction.o
 48% [86/179]  ext/nokogiri/xml_reader.c
 48% [87/179]  ext/nokogiri/xml_reader.h
 49% [88/179]  ext/nokogiri/xml_reader.o
 49% [89/179]  ext/nokogiri/xml_relax_ng.c
 50% [90/179]  ext/nokogiri/xml_relax_ng.h
 50% [91/179]  ext/nokogiri/xml_relax_ng.o
 51% [92/179]  ext/nokogiri/xml_sax_parser.c
 51% [93/179]  ext/nokogiri/xml_sax_parser.h
 52% [94/179]  ext/nokogiri/xml_sax_parser.o
 53% [95/179]  ext/nokogiri/xml_sax_parser_context.c
 53% [96/179]  ext/nokogiri/xml_sax_parser_context.h
 54% [97/179]  ext/nokogiri/xml_sax_parser_context.o
 54% [98/179]  ext/nokogiri/xml_sax_push_parser.c
 55% [99/179]  ext/nokogiri/xml_sax_push_parser.h
 55% [100/179]  ext/nokogiri/xml_sax_push_parser.o
 56% [101/179]  ext/nokogiri/xml_schema.c
 56% [102/179]  ext/nokogiri/xml_schema.h
 57% [103/179]  ext/nokogiri/xml_schema.o
 58% [104/179]  ext/nokogiri/xml_syntax_error.c
 58% [105/179]  ext/nokogiri/xml_syntax_error.h
 59% [106/179]  ext/nokogiri/xml_syntax_error.o
 59% [107/179]  ext/nokogiri/xml_text.c
 60% [108/179]  ext/nokogiri/xml_text.h
 60% [109/179]  ext/nokogiri/xml_text.o
 61% [110/179]  ext/nokogiri/xml_xpath_context.c
 62% [111/179]  ext/nokogiri/xml_xpath_context.h
 62% [112/179]  ext/nokogiri/xml_xpath_context.o
 63% [113/179]  ext/nokogiri/xslt_stylesheet.c
 63% [114/179]  ext/nokogiri/xslt_stylesheet.h
 64% [115/179]  ext/nokogiri/xslt_stylesheet.o
 64% [116/179]  lib/nokogiri.rb
 65% [117/179]  lib/nokogiri/css.rb
 65% [118/179]  lib/nokogiri/css/node.rb
 66% [119/179]  lib/nokogiri/css/parser.rb
 67% [120/179]  lib/nokogiri/css/parser.y
 67% [121/179]  lib/nokogiri/css/parser_extras.rb
 68% [122/179]  lib/nokogiri/css/syntax_error.rb
 68% [123/179]  lib/nokogiri/css/tokenizer.rb
 69% [124/179]  lib/nokogiri/css/tokenizer.rex
 69% [125/179]  lib/nokogiri/css/xpath_visitor.rb
 70% [126/179]  lib/nokogiri/decorators/slop.rb
 70% [127/179]  lib/nokogiri/html.rb
 71% [128/179]  lib/nokogiri/html/builder.rb
 72% [129/179]  lib/nokogiri/html/document.rb
 72% [130/179]  lib/nokogiri/html/document_fragment.rb
 73% [131/179]  lib/nokogiri/html/element_description.rb
 73% [132/179]  lib/nokogiri/html/element_description_defaults.rb
 74% [133/179]  lib/nokogiri/html/entity_lookup.rb
 74% [134/179]  lib/nokogiri/html/sax/parser.rb
 75% [135/179]  lib/nokogiri/html/sax/parser_context.rb
 75% [136/179]  lib/nokogiri/html/sax/push_parser.rb
 76% [137/179]  lib/nokogiri/nokogiri.so
 77% [138/179]  lib/nokogiri/syntax_error.rb
 77% [139/179]  lib/nokogiri/version.rb
 78% [140/179]  lib/nokogiri/xml.rb
 78% [141/179]  lib/nokogiri/xml/attr.rb
 79% [142/179]  lib/nokogiri/xml/attribute_decl.rb
 79% [143/179]  lib/nokogiri/xml/builder.rb
 80% [144/179]  lib/nokogiri/xml/cdata.rb
 81% [145/179]  lib/nokogiri/xml/character_data.rb
 81% [146/179]  lib/nokogiri/xml/document.rb
 82% [147/179]  lib/nokogiri/xml/document_fragment.rb
 82% [148/179]  lib/nokogiri/xml/dtd.rb
 83% [149/179]  lib/nokogiri/xml/element_content.rb
 83% [150/179]  lib/nokogiri/xml/element_decl.rb
 84% [151/179]  lib/nokogiri/xml/entity_decl.rb
 84% [152/179]  lib/nokogiri/xml/namespace.rb
 85% [153/179]  lib/nokogiri/xml/node.rb
 86% [154/179]  lib/nokogiri/xml/node/save_options.rb
 86% [155/179]  lib/nokogiri/xml/node_set.rb
 87% [156/179]  lib/nokogiri/xml/notation.rb
 87% [157/179]  lib/nokogiri/xml/parse_options.rb
 88% [158/179]  lib/nokogiri/xml/pp.rb
 88% [159/179]  lib/nokogiri/xml/pp/character_data.rb
 89% [160/179]  lib/nokogiri/xml/pp/node.rb
 89% [161/179]  lib/nokogiri/xml/processing_instruction.rb
 90% [162/179]  lib/nokogiri/xml/reader.rb
 91% [163/179]  lib/nokogiri/xml/relax_ng.rb
 91% [164/179]  lib/nokogiri/xml/sax.rb
 92% [165/179]  lib/nokogiri/xml/sax/document.rb
 92% [166/179]  lib/nokogiri/xml/sax/parser.rb
 93% [167/179]  lib/nokogiri/xml/sax/parser_context.rb
 93% [168/179]  lib/nokogiri/xml/sax/push_parser.rb
 94% [169/179]  lib/nokogiri/xml/schema.rb
 94% [170/179]  lib/nokogiri/xml/searchable.rb
 95% [171/179]  lib/nokogiri/xml/syntax_error.rb
 96% [172/179]  lib/nokogiri/xml/text.rb
 96% [173/179]  lib/nokogiri/xml/xpath.rb
 97% [174/179]  lib/nokogiri/xml/xpath/syntax_error.rb
 97% [175/179]  lib/nokogiri/xml/xpath_context.rb
 98% [176/179]  lib/nokogiri/xslt.rb
 98% [177/179]  lib/nokogiri/xslt/stylesheet.rb
 99% [178/179]  lib/xsd/xmlparser/nokogiri.rb
100% [179/179]  suppressions/README.txt

Done installing documentation for nokogiri after 3 seconds
1 gem installed

Installation succeeded on a ppc64le Debian 8.1 setup. I think it should work on Ubuntu and RHEL but it would be great if someone could test it there as well.

You can find the modified gem that I used for testing on this link. Let me know if you have any problems downloading it and want me to upload it to another host.

I'd be very grateful if the maintainers of this project gave us a little feedback on how to properly handle this situation. In the meantime, I've already added the update-config-guess.patch inside the patches directory on pull request #1326

rctay commented 9 years ago

I considered copying config.(guess|sub) from automake or redhat-rpm-config, as advised in [1] but both aren't installed by default ie. requires a user interaction. This has the benefit of config.(guess|sub) (since being provided by a package) of very likely able to support the host arch (ppc64le).

[1] https://bugzilla.redhat.com/show_bug.cgi?id=951442

SriramaSharma commented 9 years ago

@hernan-erasmo Thanks for working on a patch for this issue. Could you please test and confirm if the same works on RHEL 7.1 LE on Power as well ? Here is short URL which has details on how to get access to the same: https://ibm.biz/LoP_Access On PDP, usually the VM gets orchestrated within couple of hours from the time its requested.

Also, following the naming/numbering convention for the patch, you could name it like "0016-Update-config-guess.patch". Just a suggestion!

hernan-erasmo commented 9 years ago

@SriramaSharma Thank you for your comments. I've already renamed the patch file in this commit.

Confirmed fix for RHEL 7.1 using an IBM PDP machine. Here is the output of the installation using the modified gem uploaded here.

[u0016744@sys-75892 ~]$ uname -a
Linux sys-75892 3.10.0-229.ael7b.ppc64le #1 SMP Fri Jan 30 12:03:50 EST 2015 ppc64le ppc64le ppc64le GNU/Linux
[u0016744@sys-75892 ~]$ cat /etc/redhat-release
Red Hat Enterprise Linux Server release 7.1 (Maipo)
[u0016744@sys-75892 ~]$ gem install -V --local ./nokogiri-1.6.6.2.gem
Installing gem nokogiri-1.6.6.2
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/.autotest
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/.cross_rubies
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/.editorconfig
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/.gemtest
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/.travis.yml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/CHANGELOG.ja.rdoc
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/CHANGELOG.rdoc
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/C_CODING_STYLE.rdoc
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/Gemfile
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/Manifest.txt
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/README.ja.rdoc
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/README.rdoc
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ROADMAP.md
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/Rakefile
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/STANDARD_RESPONSES.md
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/Y_U_NO_GEMSPEC.md
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/bin/nokogiri
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/build_all
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/dependencies.yml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/depend
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/extconf.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/html_document.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/html_document.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/html_element_description.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/html_element_description.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/html_entity_lookup.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/html_entity_lookup.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/html_sax_parser_context.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/html_sax_parser_context.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/html_sax_push_parser.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/html_sax_push_parser.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/nokogiri.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/nokogiri.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_attr.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_attr.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_attribute_decl.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_attribute_decl.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_cdata.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_cdata.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_comment.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_comment.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_document.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_document.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_document_fragment.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_document_fragment.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_dtd.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_dtd.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_element_content.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_element_content.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_element_decl.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_element_decl.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_encoding_handler.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_encoding_handler.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_entity_decl.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_entity_decl.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_entity_reference.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_entity_reference.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_io.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_io.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_libxml2_hacks.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_libxml2_hacks.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_namespace.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_namespace.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_node.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_node.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_node_set.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_node_set.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_processing_instruction.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_processing_instruction.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_reader.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_reader.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_relax_ng.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_relax_ng.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_sax_parser.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_sax_parser.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_sax_parser_context.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_sax_parser_context.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_sax_push_parser.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_sax_push_parser.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_schema.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_schema.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_syntax_error.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_syntax_error.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_text.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_text.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_xpath_context.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xml_xpath_context.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xslt_stylesheet.c
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ext/nokogiri/xslt_stylesheet.h
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/css.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/css/node.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/css/parser.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/css/parser.y
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/css/parser_extras.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/css/syntax_error.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/css/tokenizer.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/css/tokenizer.rex
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/css/xpath_visitor.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/decorators/slop.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/html.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/html/builder.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/html/document.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/html/document_fragment.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/html/element_description.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/html/element_description_defaults.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/html/entity_lookup.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/html/sax/parser.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/html/sax/parser_context.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/html/sax/push_parser.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/syntax_error.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/version.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/attr.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/attribute_decl.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/builder.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/cdata.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/character_data.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/document.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/document_fragment.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/dtd.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/element_content.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/element_decl.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/entity_decl.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/namespace.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/node.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/node/save_options.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/node_set.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/notation.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/parse_options.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/pp.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/pp/character_data.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/pp/node.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/processing_instruction.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/reader.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/relax_ng.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/sax.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/sax/document.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/sax/parser.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/sax/parser_context.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/sax/push_parser.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/schema.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/searchable.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/syntax_error.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/text.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/xpath.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/xpath/syntax_error.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xml/xpath_context.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xslt.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/nokogiri/xslt/stylesheet.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/lib/xsd/xmlparser/nokogiri.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/archives/libxml2-2.9.2.tar.gz
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/archives/libxslt-1.1.28.tar.gz
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxml2/0001-Revert-Missing-initialization-for-the-catalog-module.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxml2/0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0001-Adding-doc-update-related-to-1.1.28.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0003-Initialize-pseudo-random-number-generator-with-curre.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0004-EXSLT-function-str-replace-is-broken-as-is.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0006-Fix-str-padding-to-work-with-UTF-8-strings.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0007-Separate-function-for-predicate-matching-in-patterns.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0008-Fix-direct-pattern-matching.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0009-Fix-certain-patterns-with-predicates.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0014-Fix-for-bug-436589.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0015-Fix-mkdir-for-mingw.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/updated-config-guess.patch
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/sort-patches-by-date
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/suppressions/README.txt
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/suppressions/nokogiri_ree-1.8.7.358.supp
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/suppressions/nokogiri_ruby-1.8.7.370.supp
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/suppressions/nokogiri_ruby-1.9.2.320.supp
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/suppressions/nokogiri_ruby-1.9.3.327.supp
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/tasks/test.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/css/test_nthiness.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/css/test_parser.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/css/test_tokenizer.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/css/test_xpath_visitor.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/decorators/test_slop.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/2ch.html
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/address_book.rlx
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/address_book.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/atom.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/bar/bar.xsd
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/bogus.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/dont_hurt_em_why.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/encoding.html
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/encoding.xhtml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/exslt.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/exslt.xslt
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/foo/foo.xsd
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/metacharset.html
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/noencoding.html
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/po.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/po.xsd
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/saml/saml20assertion_schema.xsd
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/saml/saml20protocol_schema.xsd
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/saml/xenc_schema.xsd
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/saml/xmldsig_schema.xsd
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/shift_jis.html
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/shift_jis.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/shift_jis_no_charset.html
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/slow-xpath.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/snuggles.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/staff.dtd
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/staff.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/staff.xslt
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/test_document_url/bar.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/test_document_url/document.dtd
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/test_document_url/document.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/tlm.html
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/to_be_xincluded.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/valid_bar.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/files/xinclude.xml
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/helper.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/html/sax/test_parser.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/html/sax/test_parser_context.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/html/sax/test_push_parser.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/html/test_builder.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/html/test_document.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/html/test_document_encoding.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/html/test_document_fragment.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/html/test_element_description.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/html/test_named_characters.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/html/test_node.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/html/test_node_encoding.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/namespaces/test_additional_namespaces_in_builder_doc.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/namespaces/test_namespaces_aliased_default.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/namespaces/test_namespaces_in_builder_doc.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/namespaces/test_namespaces_in_cloned_doc.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/namespaces/test_namespaces_in_created_doc.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/namespaces/test_namespaces_in_parsed_doc.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/namespaces/test_namespaces_preservation.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/test_convert_xpath.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/test_css_cache.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/test_encoding_handler.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/test_memory_leak.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/test_nokogiri.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/test_reader.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/test_soap4r_sax.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/test_xslt_transforms.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/node/test_save_options.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/node/test_subclass.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/sax/test_parser.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/sax/test_parser_context.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/sax/test_push_parser.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_attr.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_attribute_decl.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_builder.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_c14n.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_cdata.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_comment.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_document.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_document_encoding.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_document_fragment.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_dtd.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_dtd_encoding.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_element_content.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_element_decl.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_entity_decl.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_entity_reference.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_namespace.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_node.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_node_attributes.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_node_encoding.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_node_inheritance.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_node_reparenting.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_node_set.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_parse_options.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_processing_instruction.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_reader_encoding.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_relax_ng.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_schema.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_syntax_error.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_text.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_unparented_node.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_xinclude.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xml/test_xpath.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xslt/test_custom_functions.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test/xslt/test_exception_handling.rb
/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/test_all
Building native extensions.  This could take a while...
/usr/bin/ruby extconf.rb
checking if the C compiler accepts ... yes
Building nokogiri using packaged libraries.
checking for gzdopen() in -lz... yes
checking for iconv... yes
************************************************************************
IMPORTANT NOTICE:

Building Nokogiri with a packaged version of libxml2-2.9.2
with the following patches applied:
    - 0001-Revert-Missing-initialization-for-the-catalog-module.patch
    - 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch

Team Nokogiri will keep on doing their best to provide security
updates in a timely manner, but if this is a concern for you and want
to use the system library instead; abort this installation process and
reinstall nokogiri as follows:

    gem install nokogiri -- --use-system-libraries
        [--with-xml2-config=/path/to/xml2-config]
        [--with-xslt-config=/path/to/xslt-config]

If you are using Bundler, tell it to use the option:

    bundle config build.nokogiri --use-system-libraries
    bundle install

Note, however, that nokogiri is not fully compatible with arbitrary
versions of libxml2 provided by OS/package vendors.
************************************************************************
Extracting libxml2-2.9.2.tar.gz into tmp/ppc64le-redhat-linux-gnu/ports/libxml2/2.9.2... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxml2/0001-Revert-Missing-initialization-for-the-catalog-module.patch...
Running 'patch' for libxml2 2.9.2... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxml2/0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch...
Running 'patch' for libxml2 2.9.2... OK
Running 'configure' for libxml2 2.9.2... OK
Running 'compile' for libxml2 2.9.2... OK
Running 'install' for libxml2 2.9.2... OK
Activating libxml2 2.9.2 (from /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2)...
************************************************************************
IMPORTANT NOTICE:

Building Nokogiri with a packaged version of libxslt-1.1.28
with the following patches applied:
    - 0001-Adding-doc-update-related-to-1.1.28.patch
    - 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch
    - 0003-Initialize-pseudo-random-number-generator-with-curre.patch
    - 0004-EXSLT-function-str-replace-is-broken-as-is.patch
    - 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch
    - 0007-Separate-function-for-predicate-matching-in-patterns.patch
    - 0008-Fix-direct-pattern-matching.patch
    - 0009-Fix-certain-patterns-with-predicates.patch
    - 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch
    - 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch
    - 0014-Fix-for-bug-436589.patch
    - 0015-Fix-mkdir-for-mingw.patch
    - updated-config-guess.patch

Team Nokogiri will keep on doing their best to provide security
updates in a timely manner, but if this is a concern for you and want
to use the system library instead; abort this installation process and
reinstall nokogiri as follows:

    gem install nokogiri -- --use-system-libraries
        [--with-xml2-config=/path/to/xml2-config]
        [--with-xslt-config=/path/to/xslt-config]

If you are using Bundler, tell it to use the option:

    bundle config build.nokogiri --use-system-libraries
    bundle install
************************************************************************
Extracting libxslt-1.1.28.tar.gz into tmp/ppc64le-redhat-linux-gnu/ports/libxslt/1.1.28... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0001-Adding-doc-update-related-to-1.1.28.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0003-Initialize-pseudo-random-number-generator-with-curre.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0004-EXSLT-function-str-replace-is-broken-as-is.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0006-Fix-str-padding-to-work-with-UTF-8-strings.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0007-Separate-function-for-predicate-matching-in-patterns.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0008-Fix-direct-pattern-matching.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0009-Fix-certain-patterns-with-predicates.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0014-Fix-for-bug-436589.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/0015-Fix-mkdir-for-mingw.patch...
Running 'patch' for libxslt 1.1.28... OK
Running patch with /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/patches/libxslt/updated-config-guess.patch...
Running 'patch' for libxslt 1.1.28... OK
Running 'configure' for libxslt 1.1.28... OK
Running 'compile' for libxslt 1.1.28... OK
Running 'install' for libxslt 1.1.28... OK
Activating libxslt 1.1.28 (from /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28)...
checking for main() in -llzma... no
checking for xmlParseDoc() in libxml/parser.h... yes
checking for xsltParseStylesheetDoc() in libxslt/xslt.h... yes
checking for exsltFuncRegister() in libexslt/exslt.h... 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 "DESTDIR="
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o html_document.o -c html_document.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o html_element_description.o -c html_element_description.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o html_entity_lookup.o -c html_entity_lookup.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o html_sax_parser_context.o -c html_sax_parser_context.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o html_sax_push_parser.o -c html_sax_push_parser.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o nokogiri.o -c nokogiri.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_attr.o -c xml_attr.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_attribute_decl.o -c xml_attribute_decl.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_cdata.o -c xml_cdata.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_comment.o -c xml_comment.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_document.o -c xml_document.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_document_fragment.o -c xml_document_fragment.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_dtd.o -c xml_dtd.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_element_content.o -c xml_element_content.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_element_decl.o -c xml_element_decl.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_encoding_handler.o -c xml_encoding_handler.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_entity_decl.o -c xml_entity_decl.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_entity_reference.o -c xml_entity_reference.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_io.o -c xml_io.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_libxml2_hacks.o -c xml_libxml2_hacks.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_namespace.o -c xml_namespace.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_node.o -c xml_node.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_node_set.o -c xml_node_set.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_processing_instruction.o -c xml_processing_instruction.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_reader.o -c xml_reader.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_relax_ng.o -c xml_relax_ng.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_sax_parser.o -c xml_sax_parser.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_sax_parser_context.o -c xml_sax_parser_context.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_sax_push_parser.o -c xml_sax_push_parser.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_schema.o -c xml_schema.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_syntax_error.o -c xml_syntax_error.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_text.o -c xml_text.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xml_xpath_context.o -c xml_xpath_context.c
gcc -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -DHAVE_XMLPARSEDOC -DHAVE_XSLTPARSESTYLESHEETDOC -DHAVE_EXSLTFUNCREGISTER -DHAVE_XMLHASFEATURE -DHAVE_XMLFIRSTELEMENTCHILD -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETPARSERSTRUCTUREDERRORS -DHAVE_XMLRELAXNGSETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETVALIDSTRUCTUREDERRORS -DHAVE_XMLSCHEMASETPARSERSTRUCTUREDERRORS -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/include -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2 -I/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/include/libxml2    -DNOKOGIRI_LIBXML2_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2\" -DNOKOGIRI_LIBXML2_PATCHES\=\"0001-Revert-Missing-initialization-for-the-catalog-module.patch\ 0002-Fix-missing-entities-after-CVE-2014-3660-fix.patch\" -DNOKOGIRI_LIBXSLT_PATH\=\"/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28\" -DNOKOGIRI_LIBXSLT_PATCHES\=\"0001-Adding-doc-update-related-to-1.1.28.patch\ 0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch\ 0003-Initialize-pseudo-random-number-generator-with-curre.patch\ 0004-EXSLT-function-str-replace-is-broken-as-is.patch\ 0006-Fix-str-padding-to-work-with-UTF-8-strings.patch\ 0007-Separate-function-for-predicate-matching-in-patterns.patch\ 0008-Fix-direct-pattern-matching.patch\ 0009-Fix-certain-patterns-with-predicates.patch\ 0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch\ 0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch\ 0014-Fix-for-bug-436589.patch\ 0015-Fix-mkdir-for-mingw.patch\ updated-config-guess.patch\" -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -mcpu=power7 -mtune=power8 -fPIC  -g -DXP_UNIX -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline -DNOKOGIRI_USE_PACKAGED_LIBRARIES -m64 -o xslt_stylesheet.o -c xslt_stylesheet.c
rm -f nokogiri.so
gcc -shared -o nokogiri.so html_document.o html_element_description.o html_entity_lookup.o html_sax_parser_context.o html_sax_push_parser.o nokogiri.o xml_attr.o xml_attribute_decl.o xml_cdata.o xml_comment.o xml_document.o xml_document_fragment.o xml_dtd.o xml_element_content.o xml_element_decl.o xml_encoding_handler.o xml_entity_decl.o xml_entity_reference.o xml_io.o xml_libxml2_hacks.o xml_namespace.o xml_node.o xml_node_set.o xml_processing_instruction.o xml_reader.o xml_relax_ng.o xml_sax_parser.o xml_sax_parser_context.o xml_sax_push_parser.o xml_schema.o xml_syntax_error.o xml_text.o xml_xpath_context.o xslt_stylesheet.o -L. -L/usr/lib64 -L/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/lib -L/home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/lib -L. -Wl,-z,relro -fstack-protector -rdynamic -Wl,-export-dynamic  -m64  -lruby /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/lib/libexslt.a -lm -ldl -lz /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/lib/libxml2.a /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxslt/1.1.28/lib/libxslt.a -ldl -lm -lz /home/u0016744/.gem/ruby/gems/nokogiri-1.6.6.2/ports/ppc64le-redhat-linux-gnu/libxml2/2.9.2/lib/libxml2.a -lpthread -lrt -ldl -lcrypt -lm   -lc 
/usr/bin/ruby ./extconf.rb --clean --enable-static
Cleaning files only used during build.
make "DESTDIR=" install
/usr/bin/mkdir -p ./.gem.20150817-6819-5zgxmb/nokogiri
exit > .RUBYARCHDIR.time
/usr/bin/install -c -m 0755 nokogiri.so ./.gem.20150817-6819-5zgxmb/nokogiri

/home/u0016744/bin/nokogiri
Successfully installed nokogiri-1.6.6.2
Parsing documentation for nokogiri-1.6.6.2
Installing ri documentation for nokogiri-1.6.6.2
1 gem installed
flavorjones commented 9 years ago

Note that there's a PR that appears to address this issue at #1326

SriramaSharma commented 8 years ago

Both PR #1352 or #1326 shows the status to be up-to-date with base branch. Have these changes been merged to upstream code?

flavorjones commented 8 years ago

Merged config.guess updates into master. Will be in 1.6.7.rc4.