Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moxgreen/fd09ffb65af93a22b7dfc22c43fcaf27 to your computer and use it in GitHub Desktop.
Save moxgreen/fd09ffb65af93a22b7dfc22c43fcaf27 to your computer and use it in GitHub Desktop.
patch for compiling bcl2fastq on linux with boost 1.58
--- src/cxx/lib/io/Xml.cpp 2018-01-05 14:12:25.000000000 -0500
+++ src/cxx/lib/io/Xml.cpp 2018-01-05 14:12:35.000000000 -0500
@@ -168,19 +168,11 @@
if (!tree.empty())
{
unindex(*tree.begin(), treeWithIndexAttributes);
-#ifndef WIN32
- boost::property_tree::write_xml(os, treeWithIndexAttributes, boost::property_tree::xml_writer_make_settings(' ', 2));
-#else
boost::property_tree::write_xml(os, treeWithIndexAttributes, boost::property_tree::xml_writer_make_settings<std::string>(' ', 2));
-#endif
}
else
{
-#ifndef WIN32
- boost::property_tree::write_xml(os, tree, boost::property_tree::xml_writer_make_settings(' ', 2));
-#else
boost::property_tree::write_xml(os, tree, boost::property_tree::xml_writer_make_settings<std::string>(' ', 2));
-#endif
}
return os;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment