BOOST Python

Hi Folks, I have problems with Boost Python!!
Here is my sourcecode:
char const* greet()
return "hello, world";
#include <boost/python.hpp>
BOOST_PYTHON_MODULE(hello_ext)
using namespace boost::python;
def("greet", greet);
When I compile this with gcc, I will get the following error:
In file included from /usr/include/boost/python/detail/prefix.hpp:13:0,
from /usr/include/boost/python/args.hpp:8,
from /usr/include/boost/python.hpp:11,
from test.cxx:1:
/usr/include/boost/python/detail/wrap_python.hpp:50:23: fatal error: pyconfig.h: No such file or directory
# include <pyconfig.h>
If I now specify the path to pyconfig, it will get even worse:
gcc -I/usr/local/include/python3.3/ test.cxx -o test
Because I get:
/usr/lib/gcc/x87_64-unknown-linux-gnu/4.8.2/../../../../lib/crt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
/tmp/ccnN7atN.o: In function `PyInit_hello_ext':
test.cxx:(.text+0x21): undefined reference to `__cxa_guard_acquire'
test.cxx:(.text+0x7a): undefined reference to `__cxa_guard_release'
test.cxx:(.text+0x89): undefined reference to `boost::python::detail::init_module(PyModuleDef&, void (*)())'
/tmp/ccnN7atN.o: In function `__static_initialization_and_destruction_0(int, int)':
test.cxx:(.text+0xcf): undefined reference to `std::ios_base::Init::Init()'
test.cxx:(.text+0xde): undefined reference to `std::ios_base::Init::~Init()'
/tmp/ccnN7atN.o: In function `boost::python::type_info::name() const':
test.cxx:(.text._ZNK5boost6python9type_info4nameEv[_ZNK5boost6python9type_info4nameEv]+0x1f): undefined reference to `boost::python::detail::gcc_demangle(char const*)'
/tmp/ccnN7atN.o: In function `boost::python::to_python_value<char const* const&>::operator()(char const* const&) const':
test.cxx:(.text._ZNK5boost6python15to_python_valueIRKPKcEclES5_[_ZNK5boost6python15to_python_valueIRKPKcEclES5_]+0x1b): undefined reference to `boost::python::converter::do_return_to_python(char const*)'
/tmp/ccnN7atN.o: In function `boost::python::to_python_value<char const* const&>::get_pytype() const':
test.cxx:(.text._ZNK5boost6python15to_python_valueIRKPKcE10get_pytypeEv[_ZNK5boost6python15to_python_valueIRKPKcE10get_pytypeEv]+0x9): undefined reference to `PyUnicode_Type'
/tmp/ccnN7atN.o: In function `boost::python::api::object::object()':
test.cxx:(.text._ZN5boost6python3api6objectC2Ev[_ZN5boost6python3api6objectC5Ev]+0xd): undefined reference to `_Py_NoneStruct'
/tmp/ccnN7atN.o: In function `void boost::python::def<char const* (*)()>(char const*, char const* (*)())':
test.cxx:(.text._ZN5boost6python3defIPFPKcvEEEvS3_T_[_ZN5boost6python3defIPFPKcvEEEvS3_T_]+0x41): undefined reference to `boost::python::detail::scope_setattr_doc(char const*, boost::python::api::object const&, char const*)'
/tmp/ccnN7atN.o: In function `boost::python::api::object boost::python::detail::make_function_aux<char const* (*)(), boost::python::default_call_policies, boost::mpl::vector1<char const*> >(char const* (*)(), boost::python::default_call_policies const&, boost::mpl::vector1<char const*> const&)':
test.cxx:(.text._ZN5boost6python6detail17make_function_auxIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS4_EEEENS0_3api6objectET_RKT0_RKT1_[_ZN5boost6python6detail17make_function_auxIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS4_EEEENS0_3api6objectET_RKT0_RKT1_]+0x52): undefined reference to `boost::python::objects::function_object(boost::python::objects::py_function const&)'
/tmp/ccnN7atN.o: In function `boost::python::objects::py_function::py_function<boost::python::detail::caller<char const* (*)(), boost::python::default_call_policies, boost::mpl::vector1<char const*> > >(boost::python::detail::caller<char const* (*)(), boost::python::default_call_policies, boost::mpl::vector1<char const*> > const&)':
test.cxx:(.text._ZN5boost6python7objects11py_functionC2INS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS7_EEEEEERKT_[_ZN5boost6python7objects11py_functionC5INS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS7_EEEEEERKT_]+0x19): undefined reference to `operator new(unsigned long)'
test.cxx:(.text._ZN5boost6python7objects11py_functionC2INS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS7_EEEEEERKT_[_ZN5boost6python7objects11py_functionC5INS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS7_EEEEEERKT_]+0x47): undefined reference to `operator delete(void*)'
/tmp/ccnN7atN.o: In function `boost::python::objects::py_function_impl_base::py_function_impl_base()':
test.cxx:(.text._ZN5boost6python7objects21py_function_impl_baseC2Ev[_ZN5boost6python7objects21py_function_impl_baseC5Ev]+0xf): undefined reference to `vtable for boost::python::objects::py_function_impl_base'
/tmp/ccnN7atN.o:(.rodata._ZTVN5boost6python7objects23caller_py_function_implINS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEEEEE[_ZTVN5boost6python7objects23caller_py_function_implINS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEEEEE]+0x30): undefined reference to `boost::python::objects::py_function_impl_base::max_arity() const'
/tmp/ccnN7atN.o: In function `boost::python::objects::caller_py_function_impl<boost::python::detail::caller<char const* (*)(), boost::python::default_call_policies, boost::mpl::vector1<char const*> > >::~caller_py_function_impl()':
test.cxx:(.text._ZN5boost6python7objects23caller_py_function_implINS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEEEED2Ev[_ZN5boost6python7objects23caller_py_function_implINS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEEEED5Ev]+0x1f): undefined reference to `boost::python::objects::py_function_impl_base::~py_function_impl_base()'
test.cxx:(.text._ZN5boost6python7objects23caller_py_function_implINS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEEEED2Ev[_ZN5boost6python7objects23caller_py_function_implINS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEEEED5Ev]+0x34): undefined reference to `operator delete(void*)'
/tmp/ccnN7atN.o: In function `boost::python::objects::caller_py_function_impl<boost::python::detail::caller<char const* (*)(), boost::python::default_call_policies, boost::mpl::vector1<char const*> > >::~caller_py_function_impl()':
test.cxx:(.text._ZN5boost6python7objects23caller_py_function_implINS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEEEED0Ev[_ZN5boost6python7objects23caller_py_function_implINS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEEEED0Ev]+0x20): undefined reference to `operator delete(void*)'
/tmp/ccnN7atN.o:(.rodata._ZTIN5boost6python7objects23caller_py_function_implINS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEEEEE[_ZTIN5boost6python7objects23caller_py_function_implINS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEEEEE]+0x0): undefined reference to `vtable for __cxxabiv1::__si_class_type_info'
/tmp/ccnN7atN.o:(.rodata._ZTIN5boost6python7objects23caller_py_function_implINS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEEEEE[_ZTIN5boost6python7objects23caller_py_function_implINS0_6detail6callerIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEEEEE]+0x10): undefined reference to `typeinfo for boost::python::objects::py_function_impl_base'
/tmp/ccnN7atN.o: In function `boost::python::detail::caller_arity<0u>::impl<char const* (*)(), boost::python::default_call_policies, boost::mpl::vector1<char const*> >::signature()':
test.cxx:(.text._ZN5boost6python6detail12caller_arityILj0EE4implIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEE9signatureEv[_ZN5boost6python6detail12caller_arityILj0EE4implIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEE9signatureEv]+0x26): undefined reference to `__cxa_guard_acquire'
test.cxx:(.text._ZN5boost6python6detail12caller_arityILj0EE4implIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEE9signatureEv[_ZN5boost6python6detail12caller_arityILj0EE4implIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEE9signatureEv]+0x5a): undefined reference to `__cxa_guard_release'
test.cxx:(.text._ZN5boost6python6detail12caller_arityILj0EE4implIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEE9signatureEv[_ZN5boost6python6detail12caller_arityILj0EE4implIPFPKcvENS0_21default_call_policiesENS_3mpl7vector1IS6_EEE9signatureEv]+0x95): undefined reference to `__cxa_guard_abort'
/tmp/ccnN7atN.o: In function `boost::python::detail::signature_arity<0u>::impl<boost::mpl::vector1<char const*> >::elements()':
test.cxx:(.text._ZN5boost6python6detail15signature_arityILj0EE4implINS_3mpl7vector1IPKcEEE8elementsEv[_ZN5boost6python6detail15signature_arityILj0EE4implINS_3mpl7vector1IPKcEEE8elementsEv]+0x1d): undefined reference to `__cxa_guard_acquire'
test.cxx:(.text._ZN5boost6python6detail15signature_arityILj0EE4implINS_3mpl7vector1IPKcEEE8elementsEv[_ZN5boost6python6detail15signature_arityILj0EE4implINS_3mpl7vector1IPKcEEE8elementsEv]+0x51): undefined reference to `__cxa_guard_release'
test.cxx:(.text._ZN5boost6python6detail15signature_arityILj0EE4implINS_3mpl7vector1IPKcEEE8elementsEv[_ZN5boost6python6detail15signature_arityILj0EE4implINS_3mpl7vector1IPKcEEE8elementsEv]+0x69): undefined reference to `__cxa_guard_abort'
/tmp/ccnN7atN.o: In function `boost::python::type_info boost::python::type_id<char const*>()':
test.cxx:(.text._ZN5boost6python7type_idIPKcEENS0_9type_infoEv[_ZN5boost6python7type_idIPKcEENS0_9type_infoEv]+0xd): undefined reference to `typeinfo for char const*'
/tmp/ccnN7atN.o: In function `boost::python::converter::expected_pytype_for_arg<char const*>::get_pytype()':
test.cxx:(.text._ZN5boost6python9converter23expected_pytype_for_argIPKcE10get_pytypeEv[_ZN5boost6python9converter23expected_pytype_for_argIPKcE10get_pytypeEv]+0x1b): undefined reference to `boost::python::converter::registry::query(boost::python::type_info)'
test.cxx:(.text._ZN5boost6python9converter23expected_pytype_for_argIPKcE10get_pytypeEv[_ZN5boost6python9converter23expected_pytype_for_argIPKcE10get_pytypeEv]+0x32): undefined reference to `boost::python::converter::registration::expected_from_python_type() const'
/tmp/ccnN7atN.o: In function `boost::python::type_info boost::python::type_id<char>()':
test.cxx:(.text._ZN5boost6python7type_idIcEENS0_9type_infoEv[_ZN5boost6python7type_idIcEENS0_9type_infoEv]+0xd): undefined reference to `typeinfo for char'
/tmp/ccnN7atN.o:(.eh_frame+0x42b): undefined reference to `__gxx_personality_v0'
collect2: error: ld returned 1 exit status
Shit happens but what I can I do now. The bad thing is also that I need this library as dependecy for graph-tool, therefore it is necessary that for it to work without user specified path during compilation!

brewlius_cesar wrote:
Well, pks is half right I believe.  Well maybe one third.
I assumed the poster was writing a python extension module, which is similar to a shared library.  Shared libraries should not have a function called main with any signature.
Second, you are not required to resolve undefined symbols when linking a shared library.  Only when you link against a final executable.
That said, pks is probably right for this particular circumstance.  You should link your extension module against boost python.  This is because there is no executable going to be built from your library, it is simply going to be loaded dynamically by Python and Python will not know how/where to get the necessarry libs for boost.
This last part may not be required, some boost libraries are entirely included in the header file, and do not require you to link against a shared library.
Well, I am not familiar with boost::python at all, just with generic C programming. So if you want to create a shared object you're correct.

Similar Messages

  • Abs PKGBUILD does not create boost python

    Hi there,
    just a quick question. If I install boost with pacman, it installs also library for boost python bindings.
    If I try to compile it through abs, and install afterwards, libboost_python is missing.
    Is there any reason for that? Or am I doing something obviously stupid?
    cheers
    Vlado
    Last edited by vlado (2007-04-03 04:48:50)

    It is not created automatically... Just create it if needed.

  • [solved] Problem compialing boost python example on Arch.

    I have bean trying to compile the basic boost.python example program on arch, but g++ is spitting out errors stating that it cannot find Python.h and so on.
    #include <boost/python.hpp>
    char const* greet()
    return "hello, world";
    BOOST_PYTHON_MODULE(hello_ext)
    using namespace boost::python;
    def("greet", greet);
    g++ boost_python_test.cpp
    In file included from /usr/include/boost/python/detail/prefix.hpp:13,
    from /usr/include/boost/python/args.hpp:8,
    from /usr/include/boost/python.hpp:11,
    from boost_python_test.cpp:1:
    /usr/include/boost/python/detail/wrap_python.hpp:50:23: error: pyconfig.h: No such file or directory
    /usr/include/boost/python/detail/wrap_python.hpp:75:24: error: patchlevel.h: No such file or directory
    /usr/include/boost/python/detail/wrap_python.hpp:78:2: error: #error Python 2.2 or higher is required for this version of Boost.Python.
    /usr/include/boost/python/detail/wrap_python.hpp:142:21: error: Python.h: No such file or directory
    ^C
    tonnes of errors.
    Last edited by Hessiess (2009-04-30 21:25:26)

    JK3mp wrote:Don't forget to put SOLVED in the title on your solved issue's please.
    Done

  • Pardus, the python-based distro

    Pardus is a GNU/Linux distribution developed in Turkey, as a product of the Pardus Project. It was named after the Anatolian Leopard.
    Pardus is an easy-to-install and use operating system, with many enhancements to desktop usability, compatibility and security. With Pardus 1.0 (and the now-released Pardus 2007 version), users can connect to Internet, read e-mails, securely communicate with others and exploit the computer's multimedia capabilities by listening to music and watching movies.
    Ladislav Bodnar, the creator of DistroWatch, wrote in his round-up of Linux in 2006 that Pardus is one of the distros he was most impressed by this year "...thanks to unique package management ideas, innovative start-up sequence and general desktop polish..."[1]
    Pardus is open source and freely distributed as a GPL (General Public License) product. It can be installed in Turkish, English, Spanish, German, Dutch or Brazilian Portuguese.
    From http://en.pardus-wiki.org/Pardus:Contents
    The thing that is impressive is their package manager, PiSi ( http://www.pardus.org.tr/eng/projects/pisi/index.html )
    Feature:
        * Implemented in Python
        * Efficient and small
        * Package sources are written in XML and Python
        * Fast database access implemented with Berkeley DB
        * Integrates low-level and high-level package operations (dependency resolution)
        * Framework approach to build applications and tools upon
        * Comprehensive CLI and a user-friendly Qt GUI (distributed separately)
        * Extremely simple and fast package construction
    Has anyone tried it? How is?

    Hand-waving ("off-base") and officialdom ("plans") are just sad....what motivated all this was Arch insiders doing their own blue-skying,
    "I recall phrakture talking about really really wanting to rewrite it in C++, and Dan was recently talking about a rewrite of libalpm as well.  Who knows what's in the future for pacman?"
    http://bbs.archlinux.org/viewtopic.php? … 99#p286999
    Codemac also demanded "empirical evidence" and Pardus provides it.
    http://bbs.archlinux.org/viewtopic.php? … 08#p287108
    http://bbs.archlinux.org/viewtopic.php? … 89#p286889
    I see government backing as a positive benefit.  I don't track KimTjik on that.  The goals of the two package manager projects are identical AFAICT.  Can you identify specific differences in goals, beyond the language war issues?
    Anyway it's open source, and can be forked, like Debian's Iceweasel flavor of Firefox - essentially the same code.  The 3 ATI driver groups have 3 different drivers going for the same equipment, but all three groups are cooperating where they can.
    Some *nixers just have a belief in bash and C.  I do not - bash is an awful language and C is only really good for bit pushing at the driver level (which it was designed to do, as portable assembly).  That's my experience after too many years writing both.  And believe me, I got and remain *really* good at them.
    So I was heartened to see Arch people talking about Python.  Writing in Boost Python with seamless interplay between C++ and Python is a dream.  But hey, it's your baby.  If you think the Arch C code will be doing better things that PiSi in 2-3 years, follow that plan.
    Thanks for the discussion, everyone.

  • Upgrade OS Oracle Linux Server release 6.3 with Oracle DB 11.2.0.3.0

    Hello!
    I have Primary, two Physical Standby and one Logical Standby Servers.
    $ uname -a
    Linux host 2.6.39-200.32.1.el6uek.x86_64 #1 SMP Wed Sep 26 23:11:38 PDT 2012 x86_64 x86_64 x86_64 GNU/Linux
    $ cat /etc/issue
    Oracle Linux Server release 6.3
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE 11.2.0.3.0 Production
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    SQL> select * from dba_registry;
    COMP_ID COMP_NAME VERSION STATUS MODIFIED NAMESPACE CONTROL SCHEMA PROCEDURE STARTUP PARENT_ID OTHER_SCHEMAS
    CATALOG Oracle Database Catalog Views 11.2.0.3.0 VALID 30-SEP-2012 02:07:19 SERVER SYS SYS DBMS_REGISTRY_SYS.VALIDATE_CATALOG
    CATPROC Oracle Database Packages and Types 11.2.0.3.0 VALID 30-SEP-2012 02:07:19 SERVER SYS SYS DBMS_REGISTRY_SYS.VALIDATE_CATPROC APPQOSSYS,DBSNMP,DIP,ORACLE_OCM,OUTLN,SYSTEM
    OWM Oracle Workspace Manager 11.2.0.3.0 VALID 30-SEP-2012 02:07:19 SERVER SYS WMSYS VALIDATE_OWM
    XDB Oracle XML Database 11.2.0.3.0 VALID 30-SEP-2012 02:07:19 SERVER SYS XDB DBMS_REGXDB.VALIDATEXDB
    DGMGRL> connect sys/password
    Connected.
    DGMGRL> show configuration verbose;
    Configuration - work_DataGuardConfig
    Protection Mode: MaxAvailability
    Databases:
    primary - Primary database
    physical1 - Physical standby database
    physical1 - Physical standby database
    Properties:
    FastStartFailoverThreshold = '30'
    OperationTimeout = '30'
    FastStartFailoverLagLimit = '30'
    CommunicationTimeout = '180'
    FastStartFailoverAutoReinstate = 'TRUE'
    FastStartFailoverPmyShutdown = 'TRUE'
    BystandersFollowRoleChange = 'ALL'
    Fast-Start Failover: DISABLED
    Configuration Status:
    SUCCESS
    $ rpm -qa
    kernel-2.6.32-279.5.2.el6.x86_64
    system-config-firewall-tui-1.2.27-5.el6.noarch
    poppler-data-0.4.0-1.el6.noarch
    mesa-dri-drivers-7.11-5.el6.x86_64
    ghostscript-fonts-5.50-23.1.el6.noarch
    libxml2-python-2.7.6-8.0.1.el6_3.3.x86_64
    PyGreSQL-3.8.1-2.el6.x86_64
    perl-Time-HiRes-1.9721-127.el6.x86_64
    glibc-2.12-1.80.el6_3.5.i686
    kernel-2.6.32-279.9.1.el6.x86_64
    biosdevname-0.3.11-1.el6.x86_64
    device-mapper-1.02.74-10.el6.x86_64
    strace-4.5.19-1.11.el6_3.2.x86_64
    aic94xx-firmware-30-2.el6.noarch
    cpuspeed-1.5-15.el6.x86_64
    matahari-network-0.6.0-14.el6.x86_64
    rhino-1.7-0.7.r2.2.el6.noarch
    elinks-0.12-0.20.pre5.el6.x86_64
    libICE-1.0.6-1.el6.x86_64
    lvm2-libs-2.02.95-10.el6.x86_64
    perl-Crypt-SSLeay-0.57-16.el6.x86_64
    libtar-1.2.11-17.el6.x86_64
    perl-XML-Twig-3.34-1.el6.noarch
    libidn-1.18-2.el6.x86_64
    libreport-plugin-logger-2.0.9-5.0.1.el6.x86_64
    crda-1.1.1_2010.11.22-1.el6.x86_64
    lua-5.1.4-4.1.el6.x86_64
    gnutls-2.8.5-4.el6_2.2.x86_64
    yp-tools-2.9-12.el6.x86_64
    attr-2.4.44-7.el6.x86_64
    libtirpc-0.2.1-5.el6.x86_64
    file-5.04-13.el6.x86_64
    pax-3.4-10.1.el6.x86_64
    zip-3.0-1.el6.x86_64
    dash-0.5.5.1-3.1.el6.x86_64
    latrace-0.5.9-2.el6.x86_64
    kexec-tools-2.0.3-3.0.1.el6.x86_64
    libasyncns-0.8-1.1.el6.x86_64
    libertas-usb8388-firmware-5.110.22.p23-3.1.el6.noarch
    nss-softokn-3.12.9-11.el6.x86_64
    dbus-python-0.83.0-6.1.el6.x86_64
    ql2200-firmware-2.02.08-3.1.el6.noarch
    avahi-libs-0.6.25-11.el6.x86_64
    nfs-utils-lib-1.1.5-4.el6.x86_64
    redhat-indexhtml-6-1.0.2.el6.noarch
    boost-regex-1.41.0-11.0.1.el6_1.2.x86_64
    rpm-python-4.8.0-27.el6.x86_64
    slang-2.2.1-1.el6.x86_64
    perl-core-5.10.1-127.el6.x86_64
    libselinux-2.0.94-5.3.el6.x86_64
    iptables-ipv6-1.4.7-5.1.el6_2.x86_64
    audit-libs-2.2-2.el6.x86_64
    tcpdump-4.0.0-3.20090921gitdf3cb4.2.el6.x86_64
    keyutils-libs-1.4-4.el6.x86_64
    crash-6.0.4-2.el6.x86_64
    python-setuptools-0.6.10-3.el6.noarch
    perl-libs-5.10.1-127.el6.x86_64
    lsof-4.82-4.el6.x86_64
    perl-Module-Load-Conditional-0.30-127.el6.x86_64
    libusb1-1.0.9-0.5.rc1.el6.x86_64
    libunistring-0.9.3-5.el6.x86_64
    rsync-3.0.6-9.el6.x86_64
    libXi-1.3-3.el6.x86_64
    perl-IO-Zlib-1.09-127.el6.x86_64
    perl-HTML-Tagset-3.20-4.el6.noarch
    libXt-1.0.7-1.el6.x86_64
    perl-devel-5.10.1-127.el6.x86_64
    boost-wave-1.41.0-11.0.1.el6_1.2.x86_64
    scli-1.7.3-50.x86_64
    libthai-0.1.12-3.el6.x86_64
    perl-Compress-Raw-Bzip2-2.020-127.el6.x86_64
    mpfr-2.4.1-6.el6.x86_64
    foomatic-db-ppds-4.0-7.20091126.el6.noarch
    eggdbus-0.6-3.el6.x86_64
    libXxf86misc-1.0.2-1.el6.x86_64
    libvisual-0.4.0-9.1.el6.x86_64
    mysql-libs-5.1.61-4.el6.x86_64
    libnih-1.0.1-7.el6.x86_64
    oracle-rdbms-server-11gR2-preinstall-1.0-6.el6.x86_64
    hal-0.5.14-11.el6.x86_64
    libgcrypt-1.4.5-9.el6_2.2.x86_64
    boost-test-1.41.0-11.0.1.el6_1.2.x86_64
    glibc-common-2.12-1.80.el6_3.5.x86_64
    mysql-5.1.61-4.el6.x86_64
    ncurses-5.7-3.20090208.el6.x86_64
    python-qpid-0.14-11.el6_3.noarch
    qpid-qmf-0.14-14.0.1.el6_3.x86_64
    matahari-lib-0.6.0-14.el6.x86_64
    oracle-logos-60.0.11-9.el6.noarch
    perl-Module-Build-0.3500-127.el6.x86_64
    libhugetlbfs-utils-2.12-2.el6.x86_64
    fontpackages-filesystem-1.41-1.1.el6.noarch
    perl-Parse-CPAN-Meta-1.40-127.el6.x86_64
    openswan-2.6.32-19.el6_3.x86_64
    ncurses-libs-5.7-3.20090208.el6.x86_64
    e2fsprogs-libs-1.41.12-12.el6.x86_64
    dracut-004-284.0.1.el6_3.1.noarch
    ConsoleKit-libs-0.4.1-3.el6.x86_64
    udev-147-2.42.el6.x86_64
    bind-utils-9.8.2-0.10.rc1.el6_3.4.x86_64
    iwl5150-firmware-8.24.2.2-1.el6.noarch
    unixODBC-devel-2.2.14-11.el6.x86_64
    quota-3.17-16.el6.x86_64
    xdg-utils-1.0.2-17.20091016cvs.el6.noarch
    matahari-broker-0.6.0-14.el6.x86_64
    mingetty-1.08-5.el6.x86_64
    samba-common-3.5.10-125.el6.x86_64
    usermode-1.102-3.el6.x86_64
    abrt-addon-ccpp-2.0.8-6.0.1.el6.x86_64
    perl-XML-Dumper-0.81-6.el6.noarch
    libdhash-0.4.2-9.el6.x86_64
    crontabs-1.10-33.el6.noarch
    libevent-1.4.13-4.el6.x86_64
    mtr-0.75-5.el6.x86_64
    atk-1.28.0-2.el6.x86_64
    sgpio-1.2.0.10-5.el6.x86_64
    rdate-1.4-16.el6.x86_64
    boost-system-1.41.0-11.0.1.el6_1.2.x86_64
    latencytop-common-0.5-9.el6.x86_64
    libsemanage-2.0.43-4.1.el6.x86_64
    libtopology-0.3-7.el6.x86_64
    libtheora-1.1.0-2.el6.x86_64
    atmel-firmware-1.3-7.el6.noarch
    cryptsetup-luks-1.2.0-7.el6.x86_64
    python-dmidecode-3.10.13-1.el6.x86_64
    ipw2200-firmware-3.1-4.el6.noarch
    m4-1.4.13-5.el6.x86_64
    bfa-firmware-3.0.2.2-1.el6.noarch
    python-iwlib-0.1-1.2.el6.x86_64
    libedit-2.11-4.20080712cvs.1.el6.x86_64
    smartmontools-5.42-2.el6.x86_64
    numpy-1.4.1-9.el6.x86_64
    libcom_err-1.41.12-12.el6.x86_64
    nmap-5.51-2.0.1.el6.x86_64
    python-paramiko-1.7.5-2.1.el6.noarch
    grep-2.6.3-3.el6.x86_64
    tcsh-6.17-19.el6_2.x86_64
    db4-4.7.25-17.el6.x86_64
    db4-utils-4.7.25-17.el6.x86_64
    perl-Params-Check-0.26-127.el6.x86_64
    make-3.81-20.el6.x86_64
    expat-2.0.1-11.el6_2.x86_64
    SDL-1.2.14-3.el6.x86_64
    libXext-1.1-3.el6.x86_64
    freetype-2.3.11-6.el6_2.9.x86_64
    xorg-x11-drv-ati-firmware-6.14.2-9.el6.noarch
    libXft-2.1.13-4.1.el6.x86_64
    perl-Term-UI-0.20-127.el6.x86_64
    perl-XML-Parser-2.36-7.el6.x86_64
    libXxf86vm-1.1.0-1.el6.x86_64
    perl-Archive-Extract-0.38-127.el6.x86_64
    xz-lzma-compat-4.999.9-0.3.beta.20091007git.el6.x86_64
    device-mapper-multipath-libs-0.4.9-56.el6_3.1.x86_64
    libss-1.41.12-12.el6.x86_64
    cloog-ppl-0.15.7-1.2.el6.x86_64
    libfprint-0.1.0-19.pre2.el6.x86_64
    module-init-tools-3.9-20.0.1.el6.x86_64
    desktop-file-utils-0.15-9.el6.x86_64
    xorg-x11-utils-7.4-8.el6.x86_64
    kbd-1.15-11.el6.x86_64
    augeas-libs-0.9.0-4.el6.x86_64
    time-1.7-37.1.el6.x86_64
    logwatch-7.3.6-49.el6.noarch
    plymouth-0.8.3-24.0.1.el6.x86_64
    btparser-0.16-3.el6.x86_64
    libhugetlbfs-2.12-2.el6.x86_64
    python-2.6.6-29.el6_3.3.x86_64
    ipa-python-2.2.0-16.el6.x86_64
    dbus-1.2.24-7.0.1.el6_3.x86_64
    nss-3.13.5-1.0.1.el6_3.x86_64
    glibc-headers-2.12-1.80.el6_3.5.x86_64
    kernel-uek-2.6.39-200.29.3.el6uek.x86_64
    libuser-0.56.13-5.el6.x86_64
    foomatic-db-filesystem-4.0-7.20091126.el6.noarch
    qpid-tools-0.14-6.el6_3.noarch
    perl-ExtUtils-Embed-1.28-127.el6.x86_64
    perl-DBD-MySQL-4.013-3.el6.x86_64
    iso-codes-3.16-2.el6.noarch
    postgresql-server-8.4.13-1.el6_3.x86_64
    mesa-libGLU-7.11-5.el6.x86_64
    dstat-0.7.0-1.el6.noarch
    poppler-utils-0.12.4-3.el6_0.1.x86_64
    libX11-common-1.3-2.el6.noarch
    fipscheck-lib-1.2.0-7.el6.x86_64
    java-1.6.0-openjdk-1.6.0.0-1.49.1.11.4.el6_3.x86_64
    pam_krb5-2.3.11-9.el6.x86_64
    libcap-2.16-5.5.el6.x86_64
    kernel-uek-2.6.39-200.31.1.el6uek.x86_64
    polkit-0.96-2.el6_0.1.x86_64
    kernel-uek-firmware-2.6.39-200.32.1.el6uek.noarch
    setuptool-1.19.9-3.el6.x86_64
    popt-1.13-7.el6.x86_64
    kernel-uek-2.6.39-200.32.1.el6uek.x86_64
    kernel-devel-2.6.32-279.9.1.el6.x86_64
    b43-openfwwf-5.2-4.el6.noarch
    libacl-2.2.49-6.el6.x86_64
    telnet-0.17-47.el6_3.1.x86_64
    iwl1000-firmware-39.31.5.1-1.el6.noarch
    yum-plugin-security-1.1.30-14.0.1.el6.noarch
    readahead-1.5.6-1.el6.x86_64
    libldb-0.9.10-23.el6.x86_64
    libsepol-2.0.41-4.el6.x86_64
    hicolor-icon-theme-0.11-1.1.el6.noarch
    shadow-utils-4.1.4.2-13.el6.x86_64
    prelink-0.4.6-3.el6.x86_64
    ethtool-2.6.33-0.3.el6.x86_64
    elfutils-libelf-0.152-1.el6.x86_64
    postgresql-odbc-08.04.0200-1.el6.x86_64
    iputils-20071127-16.el6.x86_64
    sqlite-3.6.20-1.el6.x86_64
    mysql-connector-odbc-5.1.5r1144-7.el6.x86_64
    findutils-4.4.2-6.el6.x86_64
    libcap-ng-0.6.4-3.el6_0.1.x86_64
    cyrus-sasl-2.1.23-13.el6.x86_64
    ntpdate-4.2.4p8-2.el6.x86_64
    nc-1.84-22.el6.x86_64
    cronie-anacron-1.4.4-7.el6.x86_64
    plymouth-core-libs-0.8.3-24.0.1.el6.x86_64
    setserial-2.17-25.el6.x86_64
    rfkill-0.3-4.el6.x86_64
    lcms-libs-1.19-1.el6.x86_64
    ql2100-firmware-1.19.38-3.1.el6.noarch
    cyrus-sasl-gssapi-2.1.23-13.el6.x86_64
    newt-python-0.52.11-3.el6.x86_64
    rt61pci-firmware-1.2-7.el6.noarch
    python-iniparse-0.3.1-2.1.el6.noarch
    acl-2.2.49-6.el6.x86_64
    ipw2100-firmware-1.3-11.el6.noarch
    blktrace-1.0.1-6.el6.x86_64
    diffutils-2.8.1-28.el6.x86_64
    man-pages-3.22-17.el6.noarch
    system-config-firewall-base-1.2.27-5.el6.noarch
    boost-date-time-1.41.0-11.0.1.el6_1.2.x86_64
    yum-metadata-parser-1.1.2-16.el6.x86_64
    rpm-libs-4.8.0-27.el6.x86_64
    python-nss-0.11-3.el6.x86_64
    unixODBC-2.2.14-11.el6.x86_64
    libgcc-4.4.6-4.el6.x86_64
    gdbm-1.8.0-36.el6.x86_64
    libstdc++-4.4.6-4.el6.x86_64
    python-dateutil-1.4.1-6.el6.noarch
    pcre-7.8-4.el6.x86_64
    python-pycurl-7.19.0-8.el6.x86_64
    xmlrpc-c-1.16.24-1209.1840.el6.x86_64
    python-gudev-147.1-4.el6_0.1.x86_64
    libblkid-2.17.2-12.7.el6.x86_64
    perl-version-0.77-127.el6.x86_64
    perl-Locale-Maketext-Simple-0.18-127.el6.x86_64
    perl-IO-Compress-Base-2.020-127.el6.x86_64
    abrt-libs-2.0.8-6.0.1.el6.x86_64
    perl-Compress-Raw-Zlib-2.020-127.el6.x86_64
    libXau-1.0.5-1.el6.x86_64
    perl-DBIx-Simple-1.32-3.el6.noarch
    binutils-2.20.51.0.2-5.34.el6.x86_64
    libXrender-0.9.5-1.el6.x86_64
    perl-IO-Compress-Zlib-2.020-127.el6.x86_64
    libXcursor-1.1.10-2.el6.x86_64
    perl-Log-Message-Simple-0.04-127.el6.x86_64
    libXinerama-1.1-1.el6.x86_64
    perl-libwww-perl-5.833-2.el6.noarch
    libstdc++-devel-4.4.6-4.el6.x86_64
    perl-Test-Harness-3.17-127.el6.x86_64
    xorg-x11-font-utils-7.2-11.el6.x86_64
    libstdc++-4.4.6-4.el6.i686
    perl-IPC-Cmd-0.56-127.el6.x86_64
    libXv-1.0.5-1.el6.x86_64
    elfutils-0.152-1.el6.x86_64
    ncurses-static-5.7-3.20090208.el6.x86_64
    perl-Module-Loaded-0.02-127.el6.x86_64
    gstreamer-tools-0.10.29-1.0.1.el6.x86_64
    device-mapper-multipath-0.4.9-56.el6_3.1.x86_64
    keyutils-1.4-4.el6.x86_64
    iw-0.9.17-4.el6.x86_64
    xorg-x11-xauth-1.0.2-7.1.el6.x86_64
    coreutils-8.4-19.el6.x86_64
    foomatic-4.0.4-1.el6_1.1.x86_64
    gcc-4.4.6-4.el6.x86_64
    MAKEDEV-3.24-6.el6.x86_64
    libdmx-1.1.0-1.el6.x86_64
    authconfig-6.1.12-10.el6.x86_64
    ksh-20100621-16.el6.x86_64
    tar-1.23-7.el6.x86_64
    pm-utils-1.2.5-9.el6.x86_64
    ed-1.1-3.3.el6.x86_64
    iptables-1.4.7-5.1.el6_2.x86_64
    hunspell-1.2.8-16.el6.x86_64
    nmon-14g-1.el6.rf.x86_64
    jasper-libs-1.900.1-15.el6_1.1.x86_64
    initscripts-9.03.31-2.0.1.el6_3.1.x86_64
    rhn-client-tools-1.0.0-87.0.2.el6.noarch
    qpid-cpp-client-0.14-22.0.1.el6_3.x86_64
    libipa_hbac-python-1.8.0-32.el6.x86_64
    redhat-lsb-graphics-4.0-3.0.1.el6.x86_64
    less-436-10.el6.x86_64
    postgresql-8.4.13-1.el6_3.x86_64
    cracklib-dicts-2.8.16-4.el6.x86_64
    logrotate-3.7.8-15.el6.x86_64
    fontconfig-2.8.0-3.el6.x86_64
    qpid-cpp-server-0.14-22.0.1.el6_3.x86_64
    openldap-2.4.23-26.el6_3.2.x86_64
    kernel-uek-firmware-2.6.39-200.29.3.el6uek.noarch
    perl-CPANPLUS-0.88-127.el6.x86_64
    upstart-0.6.5-12.el6.x86_64
    saslwrapper-0.14-1.el6.x86_64
    net-tools-1.60-110.el6_2.x86_64
    device-mapper-event-libs-1.02.74-10.el6.x86_64
    openssh-5.3p1-81.el6.x86_64
    matahari-consoles-0.6.0-14.el6.x86_64
    matahari-python-0.6.0-14.el6.x86_64
    dmraid-events-1.0.0.rc16-11.el6.x86_64
    tuned-0.2.19-7.el6.noarch
    certmonger-0.56-1.el6.x86_64
    libreport-plugin-reportuploader-2.0.9-5.0.1.el6.x86_64
    abrt-addon-python-2.0.8-6.0.1.el6.x86_64
    libreport-plugin-kerneloops-2.0.9-5.0.1.el6.x86_64
    libpath_utils-0.2.1-9.el6.x86_64
    gtk2-2.18.9-10.el6.x86_64
    vim-common-7.2.411-1.8.el6.x86_64
    setup-2.8.14-16.el6.noarch
    latencytop-0.5-9.el6.x86_64
    autofs-5.0.5-54.el6.x86_64
    ipa-client-2.2.0-16.el6.x86_64
    abrt-cli-2.0.8-6.0.1.el6.x86_64
    lvm2-2.02.95-10.el6.x86_64
    openssh-clients-5.3p1-81.el6.x86_64
    microcode_ctl-1.17-11.el6.x86_64
    libcgroup-0.37-4.el6.x86_64
    e2fsprogs-1.41.12-12.el6.x86_64
    python-psycopg2-2.0.14-1.el6_2.1.x86_64
    rhn-setup-1.0.0-87.0.2.el6.noarch
    sos-2.2-29.0.1.el6.noarch
    psacct-6.3.2-63.el6_3.3.x86_64
    cifs-utils-4.8.1-10.el6.x86_64
    perl-CGI-3.51-127.el6.x86_64
    libicu-4.2.1-9.1.el6_2.x86_64
    mcelog-1.0pre3_20110718-0.14.el6.x86_64
    ltrace-0.5-23.45svn.el6.x86_64
    efibootmgr-0.5.4-10.el6.x86_64
    libvorbis-1.2.3-4.el6_2.1.x86_64
    ql2500-firmware-5.06.05-1.el6.noarch
    curl-7.19.7-26.el6_2.4.x86_64
    selinux-policy-targeted-3.7.19-155.0.1.el6_3.4.noarch
    jpackage-utils-1.7.5-3.12.el6.noarch
    perl-IO-Compress-Bzip2-2.020-127.el6.x86_64
    filesystem-2.4.30-3.el6.x86_64
    qpid-cpp-server-ssl-0.14-22.0.1.el6_3.x86_64
    pciutils-3.1.4-11.el6.x86_64
    xml-common-0.6.3-32.el6.noarch
    ghostscript-8.70-14.el6_3.1.x86_64
    urw-fonts-2.4-10.el6.noarch
    iotop-0.3.2-3.el6.noarch
    mailcap-2.1.31-2.el6.noarch
    libxslt-1.1.26-2.0.2.el6_3.1.x86_64
    wget-1.12-1.4.el6.x86_64
    nss-softokn-freebl-3.12.9-11.el6.x86_64
    openjpeg-libs-1.3-9.el6_3.x86_64
    fipscheck-1.2.0-7.el6.x86_64
    libattr-2.4.44-7.el6.x86_64
    kernel-uek-firmware-2.6.39-200.31.1.el6uek.noarch
    info-4.13a-8.el6.x86_64
    bind-libs-9.8.2-0.10.rc1.el6_3.4.x86_64
    ConsoleKit-0.4.1-3.el6.x86_64
    systemtap-runtime-1.7-5.0.1.el6_3.1.x86_64
    iwl6000g2b-firmware-17.168.5.2-1.el6.noarch
    kernel-uek-headers-2.6.32-300.32.3.el6uek.x86_64
    iwl6050-firmware-41.28.5.1-2.el6.noarch
    perf-2.6.32-279.9.1.el6.x86_64
    gnupg2-2.0.14-4.el6.x86_64
    iwl6000-firmware-9.221.4.1-1.el6.noarch
    yum-utils-1.1.30-14.0.1.el6.noarch
    bzip2-libs-1.0.5-7.el6_0.x86_64
    nss_compat_ossl-0.9.6-1.el6.x86_64
    gamin-0.1.10-9.el6.x86_64
    jline-0.9.94-0.8.el6.noarch
    virt-what-1.11-1.1.el6.x86_64
    dbus-glib-0.86-5.el6.x86_64
    libSM-1.1.0-7.1.el6.x86_64
    sigar-1.6.5-0.4.git58097d9.el6.x86_64
    pam_passwdqc-1.0.5-6.el6.x86_64
    hunspell-en-0.20090216-7.1.el6.noarch
    libogg-1.1.4-2.1.el6.x86_64
    postfix-2.6.6-2.2.el6_1.x86_64
    libgpg-error-1.7-4.el6.x86_64
    libtdb-1.2.1-3.el6.x86_64
    ntp-4.2.4p8-2.el6.x86_64
    mlocate-0.22.2-3.el6.x86_64
    cronie-1.4.4-7.el6.x86_64
    cyrus-sasl-plain-2.1.23-13.el6.x86_64
    pkgconfig-0.23-9.1.el6.x86_64
    oddjob-0.30-5.el6.x86_64
    libtevent-0.9.8-8.el6.x86_64
    hdparm-9.16-3.4.el6.x86_64
    traceroute-2.0.14-2.el6.x86_64
    gpm-libs-1.20.6-12.el6.x86_64
    dosfstools-3.0.9-4.el6.x86_64
    eject-2.1.5-17.el6.x86_64
    sysvinit-tools-2.87-4.dsf.el6.x86_64
    iwl5000-firmware-8.83.5.1_1-1.el6_1.1.noarch
    elfutils-libs-0.152-1.el6.x86_64
    iwl4965-firmware-228.61.2.24-2.1.el6.noarch
    pyOpenSSL-0.10-2.el6.x86_64
    rt73usb-firmware-1.8-7.el6.noarch
    boost-thread-1.41.0-11.0.1.el6_1.2.x86_64
    python-ldap-2.3.10-1.el6.x86_64
    gpg-pubkey-ec551f03-4c2d256a
    libfontenc-1.0.5-2.el6.x86_64
    pygpgme-0.1-18.20090824bzr68.el6.x86_64
    libtool-ltdl-2.2.6-15.5.el6.x86_64
    python-lxml-2.2.3-1.1.el6.x86_64
    mc-4.7.0.2-3.el6.x86_64
    newt-0.52.11-3.el6.x86_64
    glib2-2.22.5-7.el6.x86_64
    nss-util-3.13.5-1.el6_3.x86_64
    pytz-2010h-2.el6.noarch
    python-urlgrabber-3.9.1-8.el6.noarch
    readline-6.0-4.el6.x86_64
    perl-Module-Pluggable-3.90-127.el6.x86_64
    boost-python-1.41.0-11.0.1.el6_1.2.x86_64
    perl-5.10.1-127.el6.x86_64
    libpng-1.2.49-1.el6_2.x86_64
    perl-URI-1.40-2.el6.noarch
    perl-Log-Message-0.02-127.el6.x86_64
    perl-Package-Constants-0.02-127.el6.x86_64
    libxcb-1.5-1.el6.x86_64
    cpio-2.10-10.el6.x86_64
    cairo-1.8.8-3.1.el6.x86_64
    libipa_hbac-1.8.0-32.el6.x86_64
    libXtst-1.0.99.2-3.el6.x86_64
    perl-Archive-Tar-1.58-127.el6.x86_64
    perl-HTML-Parser-3.64-2.el6.x86_64
    libXdamage-1.1.2-1.el6.x86_64
    perl-Module-CoreList-2.18-127.el6.x86_64
    libgcc-4.4.6-4.el6.i686
    libXfont-1.4.1-2.el6_1.x86_64
    libXcomposite-0.4.1-2.el6.x86_64
    perl-ExtUtils-ParseXS-2.2003.0-127.el6.x86_64
    giflib-4.1.6-3.1.el6.x86_64
    perl-ExtUtils-CBuilder-0.27-127.el6.x86_64
    ncurses-term-5.7-3.20090208.el6.x86_64
    tmpwatch-2.9.16-4.el6.x86_64
    grubby-7.0.15-3.0.1.el6.x86_64
    oracleasm-support-2.1.5-1.el6.x86_64
    coreutils-libs-8.4-19.el6.x86_64
    cpp-4.4.6-4.el6.x86_64
    hal-libs-0.5.14-11.el6.x86_64
    redhat-lsb-printing-4.0-3.0.1.el6.x86_64
    gcc-c++-4.4.6-4.el6.x86_64
    libutempter-1.1.5-4.1.el6.x86_64
    liboil-0.3.16-4.1.el6.x86_64
    hwdata-0.233-7.8.el6.noarch
    libaio-devel-0.3.107-10.el6.x86_64
    boost-iostreams-1.41.0-11.0.1.el6_1.2.x86_64
    libssh2-1.2.2-11.el6_3.x86_64
    compat-libcap1-1.10-1.x86_64
    hal-info-20090716-3.1.el6.noarch
    vim-minimal-7.2.411-1.8.el6.x86_64
    perl-YAML-Syck-1.07-4.el6.x86_64
    libcollection-0.6.0-9.el6.x86_64
    glibc-2.12-1.80.el6_3.5.x86_64
    boost-serialization-1.41.0-11.0.1.el6_1.2.x86_64
    oraclelinux-release-6Server-3.0.2.x86_64
    openssl-1.0.0-25.el6_3.1.x86_64
    dejavu-sans-fonts-2.30-2.el6.noarch
    qt-sqlite-4.6.2-24.el6.x86_64
    libxml2-2.7.6-8.0.1.el6_3.3.x86_64
    groff-1.18.1.4-21.el6.x86_64
    ql23xx-firmware-3.03.27-3.1.el6.noarch
    cups-libs-1.4.2-48.el6_3.1.x86_64
    cracklib-2.8.16-4.el6.x86_64
    pcmciautils-015-4.2.el6.x86_64
    man-1.6f-30.el6.x86_64
    qpid-cpp-client-ssl-0.14-22.0.1.el6_3.x86_64
    nss-tools-3.13.5-1.0.1.el6_3.x86_64
    alsa-lib-1.0.22-3.el6.x86_64
    hwloc-1.1-0.1.el6.x86_64
    perl-Test-Simple-0.92-127.el6.x86_64
    phonon-backend-gstreamer-4.6.2-24.el6.x86_64
    perl-Time-Piece-1.15-127.el6.x86_64
    fprintd-0.1-20.git04fd09cfa.el6.x86_64
    python-saslwrapper-0.14-1.el6.x86_64
    device-mapper-event-1.02.74-10.el6.x86_64
    matahari-agent-lib-0.6.0-14.el6.x86_64
    matahari-sysconfig-0.6.0-14.el6.x86_64
    matahari-rpc-0.6.0-14.el6.x86_64
    dmraid-1.0.0.rc16-11.el6.x86_64
    matahari-host-0.6.0-14.el6.x86_64
    portreserve-0.0.4-9.el6.x86_64
    libreport-2.0.9-5.0.1.el6.x86_64
    libreport-plugin-mailx-2.0.9-5.0.1.el6.x86_64
    abrt-addon-kerneloops-2.0.8-6.0.1.el6.x86_64
    libtasn1-2.3-3.el6_2.1.x86_64
    libref_array-0.1.1-9.el6.x86_64
    file-libs-5.04-13.el6.x86_64
    c-ares-1.7.0-6.el6.x86_64
    rpcbind-0.2.0-9.el6.x86_64
    busybox-1.15.1-15.el6.x86_64
    dhclient-4.1.1-31.P1.0.1.el6_3.1.x86_64
    vim-enhanced-7.2.411-1.8.el6.x86_64
    samba-client-3.5.10-125.el6.x86_64
    openssh-server-5.3p1-81.el6.x86_64
    rsyslog-5.8.10-2.el6.x86_64
    rng-tools-2-13.el6_2.x86_64
    fprintd-pam-0.1-20.git04fd09cfa.el6.x86_64
    sudo-1.7.4p5-13.el6_3.x86_64
    rhn-check-1.0.0-87.0.2.el6.noarch
    m2crypto-0.20.2-9.el6.x86_64
    gdb-7.2-56.el6.x86_64
    audit-2.2-2.el6.x86_64
    oprofile-0.9.7-1.el6.x86_64
    valgrind-3.6.0-5.el6.x86_64
    irqbalance-0.55-35.0.1.el6_3.x86_64
    alsa-utils-1.0.22-3.el6.x86_64
    dmidecode-2.11-2.el6_1.x86_64
    libgomp-4.4.6-4.el6.x86_64
    oraclelinux-release-notes-6Server-7.x86_64
    xmlrpc-c-client-1.16.24-1209.1840.el6.x86_64
    selinux-policy-3.7.19-155.0.1.el6_3.4.noarch
    cas-0.15-1.el6.1.noarch
    ca-certificates-2010.63-3.el6_1.5.noarch
    perl-CPAN-1.9402-127.el6.x86_64
    libsndfile-1.0.20-5.el6.x86_64
    cups-1.4.2-48.el6_3.1.x86_64
    MySQL-python-1.2.3-0.3.c1.1.el6.x86_64
    dejavu-fonts-common-2.30-2.el6.noarch
    qt-x11-4.6.2-24.el6.x86_64
    krb5-workstation-1.9-33.el6_3.3.x86_64
    pulseaudio-libs-0.9.21-14.el6_3.x86_64
    dracut-kernel-004-284.0.1.el6_3.1.noarch
    util-linux-ng-2.17.2-12.7.el6.x86_64
    tzdata-java-2012f-1.el6.noarch
    iwl100-firmware-39.31.5.1-1.el6.noarch
    kpartx-0.4.9-56.el6_3.1.x86_64
    mailx-12.4-6.el6.x86_64
    yum-3.2.29-40.0.1.el6.noarch
    acpid-1.0.10-2.1.el6.x86_64
    cyrus-sasl-lib-2.1.23-13.el6.x86_64
    hesiod-3.1.0-19.el6.x86_64
    usbutils-003-4.el6.x86_64
    tcp_wrappers-libs-7.6-57.el6.x86_64
    mdadm-3.2.3-9.el6.x86_64
    xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64
    abrt-2.0.8-6.0.1.el6.x86_64
    libnl-1.1-14.el6.x86_64
    abrt-tui-2.0.8-6.0.1.el6.x86_64
    unzip-6.0-1.el6.x86_64
    pciutils-libs-3.1.4-11.el6.x86_64
    libini_config-0.6.1-9.el6.x86_64
    powertop-1.11-6.el6.x86_64
    psmisc-22.6-15.el6_0.1.x86_64
    sssd-1.8.0-32.el6.x86_64
    pixman-0.18.4-1.el6_0.1.x86_64
    bridge-utils-1.2-9.el6.x86_64
    boost-filesystem-1.41.0-11.0.1.el6_1.2.x86_64
    dhcp-common-4.1.1-31.P1.0.1.el6_3.1.x86_64
    ustr-1.0.4-9.1.el6.x86_64
    xz-4.999.9-0.3.beta.20091007git.el6.x86_64
    nfs-utils-1.2.3-26.el6.x86_64
    zd1211-firmware-1.4-4.el6.noarch
    checkpolicy-2.0.22-1.el6.x86_64
    matahari-0.6.0-14.el6.x86_64
    rhnlib-2.5.22-12.0.2.el6.noarch
    rootfiles-8.1-6.1.el6.noarch
    libusb-0.1.12-23.el6.x86_64
    parted-2.1-18.el6.x86_64
    gettext-0.17-16.el6.x86_64
    pth-2.0.7-9.3.el6.x86_64
    system-config-network-tui-1.6.0.el6.2-1.0.3.el6.noarch
    python-netaddr-0.7.5-4.el6.noarch
    bash-4.1.2-9.el6_2.x86_64
    man-pages-overrides-6.3.3-1.el6.noarch
    nspr-4.9.1-2.el6_3.x86_64
    grub-0.97-77.0.1.el6.x86_64
    python-crypto-2.0.1-22.el6.x86_64
    sed-4.2.1-10.el6.x86_64
    sysstat-9.0.4-20.el6.x86_64
    rhnsd-4.9.3-2.0.1.el6.x86_64
    perl-Pod-Escapes-1.04-127.el6.x86_64
    numactl-2.0.7-3.el6.x86_64
    boost-1.41.0-11.0.1.el6_1.2.x86_64
    libudev-147-2.42.el6.x86_64
    crash-trace-command-1.0-4.el6.x86_64
    libX11-1.3-2.el6.x86_64
    matahari-core-0.6.0-14.el6.x86_64
    ql2400-firmware-5.06.05-1.el6.noarch
    libXrandr-1.3.0-4.el6.x86_64
    perl-Object-Accessor-0.34-127.el6.x86_64
    perl-libxml-perl-0.08-10.el6.noarch
    nss-softokn-freebl-3.12.9-11.el6.i686
    pycairo-1.8.6-2.1.el6.x86_64
    perl-File-Fetch-0.26-127.el6.x86_64
    ncurses-libs-5.7-3.20090208.el6.i686
    gmp-4.3.1-7.el6_2.2.x86_64
    flac-1.2.1-6.1.el6.x86_64
    ppl-0.10.2-11.el6.x86_64
    python-matplotlib-0.99.1.2-1.el6.x86_64
    qt-4.6.2-24.el6.x86_64
    patch-2.6-6.el6.x86_64
    libXxf86dga-1.1.1-1.el6.x86_64
    kbd-misc-1.15-11.el6.noarch
    procps-3.2.8-23.el6.x86_64
    perl-Date-Manip-6.24-1.el6.noarch
    libdrm-2.4.25-2.el6.x86_64
    libgfortran-4.4.6-4.el6.x86_64
    python-libs-2.6.6-29.el6_3.3.x86_64
    python-krbV-1.0.90-3.el6.x86_64
    gzip-1.3.12-18.el6.x86_64
    dbus-libs-1.2.24-7.0.1.el6_3.x86_64
    nss-sysinit-3.13.5-1.0.1.el6_3.x86_64
    samba-winbind-clients-3.5.10-125.el6.x86_64
    glibc-devel-2.12-1.80.el6_3.5.x86_64
    plymouth-scripts-0.8.3-24.0.1.el6.x86_64
    basesystem-10.0-4.0.1.el6.noarch
    mesa-libGL-7.11-5.el6.x86_64
    postgresql-docs-8.4.13-1.el6_3.x86_64
    poppler-0.12.4-3.el6_0.1.x86_64
    ncurses-base-5.7-3.20090208.el6.x86_64
    perl-parent-0.221-127.el6.x86_64
    kernel-devel-2.6.32-279.5.2.el6.x86_64
    oddjob-mkhomedir-0.30-5.el6.x86_64
    zlib-1.2.3-27.el6.x86_64
    libselinux-utils-2.0.94-5.3.el6.x86_64
    kernel-firmware-2.6.32-279.9.1.el6.noarch
    device-mapper-libs-1.02.74-10.el6.x86_64
    tzdata-2012f-1.el6.noarch
    iwl6000g2a-firmware-17.168.5.3-1.el6.noarch
    libjpeg-6b-46.el6.x86_64
    policycoreutils-2.0.83-19.24.0.1.el6.x86_64
    yum-rhn-plugin-0.9.1-43.0.1.el6.noarch
    gpgme-1.1.8-3.el6.x86_64
    matahari-service-0.6.0-14.el6.x86_64
    libaio-0.3.107-10.el6.x86_64
    pinfo-0.6.9-12.el6.x86_64
    libtalloc-2.0.1-1.1.el6.x86_64
    cryptsetup-luks-libs-1.2.0-7.el6.x86_64
    boost-program-options-1.41.0-11.0.1.el6_1.2.x86_64
    libreport-python-2.0.9-5.0.1.el6.x86_64
    perl-XML-Grove-0.46alpha-40.el6.noarch
    which-2.19-6.el6.x86_64
    libreport-cli-2.0.9-5.0.1.el6.x86_64
    wireless-tools-29-5.1.1.el6.x86_64
    bzip2-1.0.5-7.el6_0.x86_64
    ypbind-1.20.4-29.el6.x86_64
    nano-2.0.9-7.el6.x86_64
    libgssglue-0.1-11.el6.x86_64
    vconfig-1.9-8.1.el6.x86_64
    kernel-2.6.32-279.5.1.el6.x86_64
    b43-fwcutter-012-2.2.el6.x86_64
    libmng-1.0.10-4.1.el6.x86_64
    libffi-3.0.5-3.2.el6.x86_64
    ivtv-firmware-20080701-20.2.noarch
    python-ethtool-0.6-1.el6.x86_64
    iwl3945-firmware-15.32.2.9-4.el6.noarch
    bc-1.06.95-1.el6.x86_64
    words-3.0-17.el6.noarch
    mysql-server-5.1.61-4.el6.x86_64
    python-kerberos-1.1-6.2.el6.x86_64
    rpm-4.8.0-27.el6.x86_64
    libpcap-1.0.0-6.20091201git117cb5.el6.x86_64
    passwd-0.77-4.el6_2.2.x86_64
    chkconfig-1.3.49.3-2.el6.x86_64
    cvs-1.11.23-11.el6_2.1.x86_64
    libuuid-2.17.2-12.7.el6.x86_64
    perl-DBI-1.609-4.el6.x86_64
    at-3.1.10-43.el6_2.1.x86_64
    pygobject2-2.20.0-5.el6.x86_64
    gawk-3.1.7-9.el6.x86_64
    libgudev1-147-2.42.el6.x86_64
    python-nose-0.10.4-3.1.el6.noarch
    perl-Pod-Simple-3.13-127.el6.x86_64
    ntsysv-1.3.49.3-2.el6.x86_64
    perl-Module-Load-0.16-127.el6.x86_64
    trace-cmd-1.0.5-7.el6.x86_64
    theora-tools-1.1.0-2.el6.x86_64
    libtiff-3.9.4-6.el6_3.x86_64
    perl-DBD-SQLite-1.27-3.el6.x86_64
    nfs4-acl-tools-0.3.3-6.el6.x86_64
    libXfixes-4.0.4-1.el6.x86_64
    perl-Compress-Zlib-2.020-127.el6.x86_64
    kernel-devel-2.6.32-279.5.1.el6.x86_64
    qt3-3.3.8b-30.el6.x86_64
    perl-ExtUtils-MakeMaker-6.55-127.el6.x86_64
    boost-graph-1.41.0-11.0.1.el6_1.2.x86_64
    ncurses-devel-5.7-3.20090208.el6.x86_64
    pango-1.28.1-3.el6_0.5.x86_64
    perl-Digest-SHA-5.47-127.el6.x86_64
    gstreamer-0.10.29-1.0.1.el6.x86_64
    libXmu-1.0.5-1.el6.x86_64
    foomatic-db-4.0-7.20091126.el6.noarch
    pam-1.1.1-10.el6_2.1.x86_64
    tcp_wrappers-7.6-57.el6.x86_64
    compat-libstdc++-33-3.2.3-69.el6.x86_64
    gstreamer-plugins-base-0.10.29-1.el6.x86_64
    pinentry-0.7.6-6.el6.x86_64
    elfutils-libelf-devel-0.152-1.el6.x86_64
    iproute-2.6.32-20.el6.x86_64
    boost-signals-1.41.0-11.0.1.el6_1.2.x86_64
    krb5-libs-1.9-33.el6_3.3.x86_64
    atlas-3.8.4-2.el6.x86_64
    cdparanoia-libs-10.2-5.1.el6.x86_64
    postgresql-libs-8.4.13-1.el6_3.x86_64
    redhat-lsb-4.0-3.0.1.el6.x86_64
    sssd-client-1.8.0-32.el6.x86_64
    python-qpid-qmf-0.14-14.0.1.el6_3.x86_64
    seekwatcher-0.12-5.el6.noarch
    libcurl-7.19.7-26.el6_2.4.x86_64
    I want to upgrade my OS from official repository on Primary and Standby Servers. And I have a question:
    Will I have a problem with my RDBMS after upgrade OS (e.g. statuses in dba_registry will become INVALID)?

    It's Ok.
    Now I have:
    $ cat /etc/issue
    Oracle Linux Server release 6.4
    No any problem.

  • GCC with Symbol Visibility patch = faster apps (KDE 3.4)

    I've checked gcc CVS PKGBUILD and I can't seem to find this patch in it. The patch is already present in GCC 4.
    What is this patch useful for? (quote from here)
    1.  It very substantially improves load times of your DSO (Dynamic Shared Object)
          For example, the TnFOX Boost.Python bindings library now loads in eight seconds rather than over six minutes!
       2. It lets the optimiser produce better code
          PLT indirections (when a function call or variable access must be looked up via the Global Offset Table such as in PIC code) can be completely avoided, thus substantially avoiding pipeline stalls on modern processors and thus much faster code. Furthermore when most of the symbols are bound locally, they can be safely elided (removed) completely through the entire DSO. This gives greater latitude especially to the inliner which no longer needs to keep an entry point around "just in case".
       3. It reduces the size of your DSO by 5-20%
          ELF's exported symbol table format is quite a space hog, giving the complete mangled symbol name which with heavy template usage can average around 1000 bytes. C++ templates spew out a huge amount of symbols and a typical C++ library can easily surpass 30,000 symbols which is around 5-6Mb! Therefore if you cut out the 60-80% of unnecessary symbols, your DSO can be megabytes smaller!
       4. Much lower chance of symbol collision
          The old woe of two libraries internally using the same symbol for different things is finally behind us with this patch. Hallelujah!
    What I've understood from that webpage is that, in order to turn this on, the applications must be compiled with some certain flags (this provides GCC backward compatibility, even with this patch applied, IMO).
    A comment here states that KDE 3.4 (upcomming version) supports this compile flag and it's (a lot) faster.
    I haven't seen the PKGBUILD of KDE 3.4 beta 2 to check if it uses "-fvisibilty=hidden", but I suppose it does not since GCC is not patched.
    Fedora, MDK 10.2 and Gentoo have this patch applied to GCC 3.4 (and KDE 3.4 betas are compiled with fvisibility in those distros, according to the comments there.
    There's also "-fvisibility-inlines-hidden" which does not require any support from the application, but I think that's overriden by -fvisibility flag.

    Well there are plenty of non-kde and kde specific features that are supplied as extras and would only benefit those users that need them (cups, samba, etc) to the rest of the users who may not like, want, or need them they get them anyway right now because in order to not keep recompiling package to add features Arch maintainers add the features in right from the get go. Modularity means that the packages may be built to support such features but will run without the supporting packages and the feature only works or gets enabled when you install the supporting packages.
    Take transcode for example it really only has about four true dependencies but it can support all sorts of features all one has to do is install what supporting packages it needs to use these features. thsi allows the user to use whatever features or codecs they like and not have to rebuild in order to use a specific feature. It makess the maintainer's jobs alot easier because they can build all support in with only the minimal dependencies in the end.
    Modularity works for all level and need of the user.  The developers of KDE have to know that many users will want it all and many will want a slim KDE that is the nature of the user base in linux. Modularity caters to both.
    (Modualrity has been a standard in kernels for years and should be the standard for big projects like kde,gnome, etc.)

  • Problems in order to build DarkRadiant editor

    Hello gentlemen, I have problems in order to install DarkRadiant From source.
    DarkRadiant is the map editor for the Darkmod Project, a modification of Doom3.
    The problem is that when I do:
    ./autogen
    ./configure
    the terminal shows me this:
    checking for the toolset name used by Boost for g++... configure: WARNING: could not figure out which toolset name to use for g++
    checking boost/regex.hpp usability... yes
    checking boost/regex.hpp presence... yes
    checking for boost/regex.hpp... yes
    checking for the Boost regex library... yes
    checking boost/system/error_code.hpp usability... yes
    checking boost/system/error_code.hpp presence... yes
    checking for boost/system/error_code.hpp... yes
    checking for the Boost system library... yes
    checking boost/filesystem/path.hpp usability... yes
    checking boost/filesystem/path.hpp presence... yes
    checking for boost/filesystem/path.hpp... yes
    checking for the Boost filesystem library... yes
    checking for boost/system/error_code.hpp... (cached) yes
    checking for the Boost system library... (cached) yes
    checking for python-config... python-config
    checking boost/python.hpp usability... yes
    checking boost/python.hpp presence... yes
    checking for boost/python.hpp... yes
    checking for the Boost python library... no
    configure: error: cannot find the flags to link with Boost python
    And I can't compile it,
    I have tried using AUR but it is even worst, the package installs correctly, but when i run the editor:
    segmentation fault.

    If it built from AUR why do you you think you'd get a different result from building it manually?  All that makepkg does is run the commands needed to build it.
    That said, if you want to do it yourself, you should look at the PKGBUILD to see which commands are needed.  Use autoreconf instead of autogen, modify the configure script, set the environment variables, and pass the right parameters to configure.
    Edit: I just built it from the AUR.  I got segfaults after it started when it tried to load files that don't exist (/usr/local/game/doom3).  This is an upstream bug, report it there.
    Last edited by Trilby (2012-09-20 12:28:21)

  • A perfect WM?

    punkrockguy318 wrote:I disagree with no decent WMs.  That's what I love about Linux!  So many WM's to choose from.  XFCE4, KDE, IceWM, fluxbox... and many many more!
    Pardon me. yes, XFCE4 and fluxbox are "decent" WMs.... I'm talking about the perfect WM.  They all have flaws that seem to interfere with getting work done. The command line is as productive as any WM (some would say more so), but it has flaws too.
    Of course, there is no such thing as perfect software, but when I have firefox for web browsing, jEdit *and* vim for text editing and Arch for configuration and package management, I find that window managers are just a little bit behind what I consider useful.
    I'm using fluxbox-devel... pretty happy, but not satisfied with it.
    *pardon me for hijacking*
    I'm sticking with kdm because I need kppp anyway. WVDial keeps disconnecting me and I can't find any other dialers.  Later I'll learn how to customize XDM.
    Dusty

    Dusty wrote:I've considered it, but I can't find a package. :oops:  I found forum posts where contrasutra had been maintaining it but...
    RIght, I forgot about the lack of packages. The problem is, for kahakai to compile on Arch, you need to patch Xft.h, or at least I had to. The fix was to add
    #include <ft2build.h>
    #include FT_FREETYPE_H
    before:
    #include <freetype/freetype.h>
    but looking at the file, the line #include <freetype/freetype.h>  isn't there anymore, so maybe this has been fixed in xfree 4.4. I think the reason contrasutra hasn't updated his package is because kahakai simply wouldn't build and run on a setup without this patch. Here's the PKGBUILD i used if you still want to give it a try.
    pkgname=kahakai
    pkgver=0.6.2
    pkgrel=1
    pkgdesc=""An extremely cool window manager for X based on the (dead?) Waimea Window Manager." Only the new version. ;)"
    url=""
    depends=(xfree86 boost python swig)
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=($pkgname-$pkgver.tar.bz2)
    md5sums=('84f1501035d1fbab7eb46121a47b0dd8')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr
    make || return 1
    make prefix=$startdir/pkg/usr install
    You have to download the tar.bz from sourceforge first.
    I want to try it are because it supports python scripting (which I'm just learning). Maybe I'll get around to building a package if this post doesn't con a PKGBUILD out of someone...
    quite
    Part of my problem is screen real estate, I think... need a bigger lcd.
    I hear you, have the same problem, that's why the 9 screens per desktop are so handy. Hope it works for you!

  • Kahakai

    I'm trying to build kahakai, apparently its supposed to be a headache no matter what. :-/
    this is my PKGBUILD:
    pkgname=kahakai
    pkgver=0.6.2
    pkgrel=1
    pkgdesc=""An extremely cool window manager for X based on the (dead?) Waimea Window Manager." Only the new version. ;)"
    url=""
    depends=(xfree86 boost python swig)
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(http://aleron.dl.sourceforge.net/sourceforge/kahakai/$pkgname-$pkgver.tar.bz2)
    md5sums=('84f1501035d1fbab7eb46121a47b0dd8')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr
    make || return 1
    make prefix=$startdir/pkg/usr install
    I'm getting this error:
    g++ -DHAVE_CONFIG_H -I. -I. -I. -I/usr/X11R6/include -I/usr/include/freetype2 -I/usr/include/python2.3/ -I../src -DDEFAULTSTYLE="/usr/share/kahakai/styles/Default.style" -DDEFAULTMENU="/usr/share/kahakai/menu" -DDEFAULTACTION="/usr/share/kahakai/actions/action" -DDEFAULTRCFILE="/usr/share/kahakai/config" -DDEFAULTSCRIPTDIR="/usr/share/kahakai/scripts" -DPKGDATADIR="/usr/share/kahakai" -DDEFAULTSCRIPTCONFIG="/usr/share/kahakai/home_userconfig.py" -DPKGLIBDIR="/usr/lib/kahakai" -DGDB_COMMANDS_FILE="/usr/share/kahakai/cmd.gdb" -march=i686 -O2 -pipe -MT swig_wrapper_python.lo -MD -MP -MF .deps/swig_wrapper_python.Tpo -c swig_wrapper_python.cc -fPIC -DPIC -o .libs/swig_wrapper_python.o
    In file included from DrawOp.hh:13,
    from Texture.hh:12,
    from Style.hh:16,
    from Screen.hh:19,
    from Window.hh:32,
    from swig_wrapper_python.cc:971:
    Imlib2pp.hh:16:21: Imlib2.h: No such file or directory
    In file included from DrawOp.hh:13,
    from Texture.hh:12,
    from Style.hh:16,
    from Screen.hh:19,
    from Window.hh:32,
    from swig_wrapper_python.cc:971:
    Imlib2pp.hh:46: error: 'ImlibPolygon' is used as a type, but is not defined as
    a type.
    Imlib2pp.hh:56: error: 'Imlib_Color_Range' is used as a type, but is not
    defined as a type.
    Imlib2pp.hh:65: error: type specifier omitted for parameter `DATA32'
    Imlib2pp.hh:65: error: parse error before `*' token
    Imlib2pp.hh:117: error: 'Imlib_Image' is used as a type, but is not defined as
    a type.
    Imlib2pp.hh:129: error: 'Imlib_Context' is used as a type, but is not defined
    as a type.
    In file included from Screen.hh:22,
    from Window.hh:32,
    from swig_wrapper_python.cc:971:
    ImageControl.hh: In member function `void ImageControl::free_pixmap(long
    unsigned int)':
    ImageControl.hh:54: error: `imlib_free_pixmap_and_mask' undeclared (first use
    this function)
    ImageControl.hh:54: error: (Each undeclared identifier is reported only once
    for each function it appears in.)
    make[2]: *** [swig_wrapper_python.lo] Error 1
    make[2]: Leaving directory `/home/dusty/Documents/code/pkgs/kahakai/src/kahakai-0.6.2/src'
    make[1]: *** [all] Error 2
    make[1]: Leaving directory `/home/dusty/Documents/code/pkgs/kahakai/src/kahakai-0.6.2/src'
    make: *** [all-recursive] Error 1
    And according to kahakai wiki:
    Compilation bombs out on swig_wrapper_python.cc or swig_wrapper_ruby.cc
    Please check your SWIG version: 1.3.18 and 1.3.19 have a bug, 1.3.16 or 1.3.17 work fine.
    the SWIG version in pacman is 1.3.21. Apparently it doesn't work with kahakai either. I think the bug is in kahakai, not swig. :-D
    I don't feel like messing with this a lot, but what can somebody suggest for the easiest way to solve this?  I assume downgrading swig is one option, but that's not easy or clean.
    Dusty

    heres the PKGBUILD
    pkgname=kahakai
    pkgver=0.6.2
    pkgrel=1
    pkgdesc=""An extremely cool window manager for X based on the (dead?) Waimea Window Manager." Only the new version. ;)"
    url=""
    depends=('xfree86' 'boost' 'python' 'swig' 'imlib2')
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=(http://aleron.dl.sourceforge.net/sourceforge/kahakai/$pkgname-$pkgver.tar.bz2)
    md5sums=('84f1501035d1fbab7eb46121a47b0dd8')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr
    make || return 1
    make prefix=$startdir/pkg/usr install

  • Boost install with python

    I'm having a few difficulties compiling and installing boost 1.34.1 with python. As I understand it I can either compile and link with gcc or with sun studio12, both of which are installed with SXDE. Going down either road seems to lead me dead ends.
    Using gcc I get errors like:
    gcc.link.dll bin.v2/libs/test/build/gcc-3.4.3/debug/threading-multi/libboost_unit_test_framework-gcc34-mt-d-1_34_1.so.1.34.1
    /usr/ccs/bin/ld: illegal option -- start-group
    /usr/ccs/bin/ld: illegal option -- end-group
    usage: ld [-6:abc:d:e:f:h:il:mo:p:rstu:z:B:CD:F:GI:L:M:N:P:Q:R:S:VY:?] file(s)which leads me to believe that I need to use the gnu linker (gld) and not the sun. I have not had any luck changing boost's configuration to explicitly do this. Even trying to modify the user-config.jam to say:
    using gcc : <linker-type>gnu; as mentioned in: http://lists.boost.org/boost-users/2007/10/31284.php
    So then I resorted to trying to use Sun Studio 12, which works fine until I get the problem mentioned at http://blogs.sun.com/sga/entry/boost_and_sun_studio_12#comments which suggests that I need to apply patch-01 for Sun Studio 12. Unfortunately, I'm not sure where to find the patch.
    Anybody with ideas for solving both problems would be appreciated.
    Thanks,
    Karl
    I would like information on how to resolve both problems.

    I had the same problem. I was able to solve it by manually specifying the linker to use. The sun linker and the gnu linker have very different parameters, and Boost does not autodetect which linker you are using. Based on your output, /usr/ccs/bin/ld is the sun linker, not the gnu linker. Many solaris platforms that compile with gcc use the sun linker. Sun's gcc distribution does this by default. Also, if you built gcc yourself, it will use whatever linker it was built with, which is probably the sun linker unless you explicitly configured it to use the gnu linker.
    After you run the Boost configure script, edit user-config.jam.
    You should see something like:
    using gccYou need to change it to something like
    using gcc : : : <linker-type>sun ; Note that you need 3 semicolons and you need to set linker type to sun, not gnu.
    You should now be able to run make and have Boost link correctly.

  • I can't install lib32-boost-libs from AUR

    I am trying to install Plex Media Server from AUR and one of the dependencies is lib32-boost-libs, but when I try and install it I get an error. How can I fix this?
    ==> lib32-boost-libs dependencies:
    - lib32-bzip2 (already installed)
    - lib32-zlib (already installed)
    - lib32-gcc-libs (already installed)
    - icu (already installed)
    - python (already installed)
    - python2 (already installed)
    - bzip2 (already installed)
    - lib32-zlib (already installed)
    - openmpi (already installed)
    - gcc-multilib (already installed)
    ==> Continue building lib32-boost-libs ? [Y/n]
    ==> ------------------------------------------
    ==>
    ==> Building and installing package
    ==> Making package: lib32-boost-libs 1.47.0-1 (Tue Jan 3 12:33:08 MST 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Downloading boost_1_47_0.tar.gz...
    --2012-01-03 12:33:08-- http://downloads.sourceforge.net/sourceforge/boost/boost_1_47_0.tar.gz
    Resolving downloads.sourceforge.net... 216.34.181.59
    Connecting to downloads.sourceforge.net|216.34.181.59|:80... connected.
    HTTP request sent, awaiting response... 301 Moved Permanently
    Location: http://downloads.sourceforge.net/project/boost/boost/1.47.0/boost_1_47_0.tar.gz [following]
    --2012-01-03 12:33:18-- http://downloads.sourceforge.net/project/boost/boost/1.47.0/boost_1_47_0.tar.gz
    Reusing existing connection to downloads.sourceforge.net:80.
    HTTP request sent, awaiting response... 302 Found
    Location: http://superb-dca2.dl.sourceforge.net/project/boost/boost/1.47.0/boost_1_47_0.tar.gz [following]
    --2012-01-03 12:33:18-- http://superb-dca2.dl.sourceforge.net/project/boost/boost/1.47.0/boost_1_47_0.tar.gz
    Resolving superb-dca2.dl.sourceforge.net... 209.61.193.20
    Connecting to superb-dca2.dl.sourceforge.net|209.61.193.20|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 55798639 (53M) [application/x-gzip]
    Saving to: `boost_1_47_0.tar.gz.part'
    100%[=====================================================================================================================>] 55,798,639 322K/s in 2m 36s
    2012-01-03 12:35:58 (350 KB/s) - `boost_1_47_0.tar.gz.part' saved [55798639/55798639]
    ==> Validating source files with md5sums...
    boost_1_47_0.tar.gz ... Passed
    ==> Extracting Sources...
    -> Extracting boost_1_47_0.tar.gz with bsdtar
    ==> Starting build()...
    /tmp/yaourt-tmp-jason/aur-lib32-boost-libs/./PKGBUILD: line 38: ./build.sh: Permission denied
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build lib32-boost-libs.
    ==> Restart building lib32-boost-libs ? [y/N]
    ==> -----------------------------------------
    ==>

    Raynman wrote:My guess: you have /tmp mounted with 'noexec'.
    It was, but I took noexec out. After I rebooted and tried to install lib32-boost-libs I got a very similar error
    ==> Continue building lib32-boost-libs ? [Y/n]
    ==> ------------------------------------------
    ==>
    ==> Building and installing package
    ==> Making package: lib32-boost-libs 1.48.0-1 (Thu Jan 5 13:34:17 MST 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Downloading boost_1_48_0.tar.gz...
    --2012-01-05 13:34:17-- http://downloads.sourceforge.net/sourceforge/boost/boost_1_48_0.tar.gz
    Resolving downloads.sourceforge.net... 216.34.181.59
    Connecting to downloads.sourceforge.net|216.34.181.59|:80... connected.
    HTTP request sent, awaiting response... 301 Moved Permanently
    Location: http://downloads.sourceforge.net/project/boost/boost/1.48.0/boost_1_48_0.tar.gz [following]
    --2012-01-05 13:34:32-- http://downloads.sourceforge.net/project/boost/boost/1.48.0/boost_1_48_0.tar.gz
    Reusing existing connection to downloads.sourceforge.net:80.
    HTTP request sent, awaiting response... 302 Found
    Location: http://voxel.dl.sourceforge.net/project/boost/boost/1.48.0/boost_1_48_0.tar.gz [following]
    --2012-01-05 13:34:32-- http://voxel.dl.sourceforge.net/project/boost/boost/1.48.0/boost_1_48_0.tar.gz
    Resolving voxel.dl.sourceforge.net... 208.122.29.16, 208.122.29.17, 208.122.29.18, ...
    Connecting to voxel.dl.sourceforge.net|208.122.29.16|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 58665706 (56M) [application/x-gzip]
    Saving to: `boost_1_48_0.tar.gz.part'
    100%[=====================================================================================================================>] 58,665,706 215K/s in 4m 52s
    2012-01-05 13:39:28 (196 KB/s) - `boost_1_48_0.tar.gz.part' saved [58665706/58665706]
    ==> Validating source files with md5sums...
    boost_1_48_0.tar.gz ... Passed
    ==> Validating source files with sha1sums...
    boost_1_48_0.tar.gz ... Passed
    ==> Extracting Sources...
    -> Extracting boost_1_48_0.tar.gz with bsdtar
    ==> Starting build()...
    ### Using 'cc' toolset.
    rm -rf bootstrap
    mkdir bootstrap
    gcc -o bootstrap/jam0 -m32 command.c compile.c debug.c expand.c glob.c hash.c hdrmacro.c headers.c jam.c jambase.c jamgram.c lists.c make.c make1.c newstr.c option.c output.c parse.c pathunix.c pathvms.c regexp.c rules.c scan.c search.c subst.c timestamp.c variable.c modules.c strings.c filesys.c builtins.c pwd.c class.c native.c md5.c w32_getreg.c modules/set.c modules/path.c modules/regex.c modules/property-set.c modules/sequence.c modules/order.c execunix.c fileunix.c
    ./bootstrap/jam0 -f build.jam --toolset=cc --toolset-root= clean
    ...found 1 target...
    ...updating 1 target...
    ...updated 1 target...
    ./bootstrap/jam0 -f build.jam --toolset=cc --toolset-root=
    ...found 49 targets...
    ...updating 3 targets...
    [MKDIR] bin.linuxx86
    [COMPILE] bin.linuxx86/b2
    [COPY] bin.linuxx86/bjam
    ...updated 3 targets...
    Performing configuration checks
    - has_icu builds : yes
    ...patience...
    ...found 1013 targets...
    ...updating 82 targets...
    common.mkdir ../../bin.v2/tools
    common.mkdir ../../bin.v2/tools/bcp
    common.mkdir ../../bin.v2/tools/bcp/gcc-4.6.2
    common.mkdir ../../bin.v2/tools/bcp/gcc-4.6.2/release
    common.mkdir ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static
    gcc.compile.c++ ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static/add_dependent_lib.o
    gcc.compile.c++ ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static/add_path.o
    gcc.compile.c++ ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static/bcp_imp.o
    gcc.compile.c++ ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static/copy_path.o
    gcc.compile.c++ ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static/file_types.o
    gcc.compile.c++ ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static/fileview.o
    gcc.compile.c++ ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static/main.o
    gcc.compile.c++ ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static/path_operations.o
    gcc.compile.c++ ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static/scan_cvs_path.o
    scan_cvs_path.cpp: In member function ‘void bcp_implementation::scan_cvs_path(const boost::filesystem3::path&)’:
    scan_cvs_path.cpp:34:68: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    gcc.compile.c++ ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static/licence_info.o
    gcc.compile.c++ ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static/scan_licence.o
    scan_licence.cpp: In function ‘const char* context_before_license(const fileview&, fileview::const_iterator, int)’:
    scan_licence.cpp:31:76: warning: suggest parentheses around ‘&&’ within ‘||’ [-Wparentheses]
    scan_licence.cpp: In function ‘const char* context_after_license(const fileview&, fileview::const_iterator, int)’:
    scan_licence.cpp:52:74: warning: suggest parentheses around ‘&&’ within ‘||’ [-Wparentheses]
    gcc.compile.c++ ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static/output_licence_info.o
    common.mkdir ../../bin.v2/libs/test
    common.mkdir ../../bin.v2/libs/test/build
    common.mkdir ../../bin.v2/libs/test/build/gcc-4.6.2
    common.mkdir ../../bin.v2/libs/test/build/gcc-4.6.2/release
    common.mkdir ../../bin.v2/libs/test/build/gcc-4.6.2/release/link-static
    gcc.compile.c++ ../../bin.v2/libs/test/build/gcc-4.6.2/release/link-static/execution_monitor.o
    gcc.compile.c++ ../../bin.v2/libs/test/build/gcc-4.6.2/release/link-static/debug.o
    gcc.compile.c++ ../../bin.v2/libs/test/build/gcc-4.6.2/release/link-static/cpp_main.o
    gcc.archive ../../bin.v2/libs/test/build/gcc-4.6.2/release/link-static/libboost_prg_exec_monitor.a
    common.mkdir ../../bin.v2/libs/regex/build/gcc-4.6.2/release
    common.mkdir ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/c_regex_traits.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/cpp_regex_traits.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/cregex.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/fileiter.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/icu.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/instances.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/posix_api.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/regex.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/regex_debug.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/regex_raw_buffer.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/regex_traits_defaults.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/static_mutex.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/w32_regex_traits.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/wc_regex_traits.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/wide_posix_api.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/winstances.o
    gcc.compile.c++ ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/usinstances.o
    gcc.archive ../../bin.v2/libs/regex/build/gcc-4.6.2/release/link-static/libboost_regex.a
    common.mkdir ../../bin.v2/libs/filesystem
    common.mkdir ../../bin.v2/libs/filesystem/build
    common.mkdir ../../bin.v2/libs/filesystem/build/gcc-4.6.2
    common.mkdir ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release
    common.mkdir ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static
    common.mkdir ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v2
    common.mkdir ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v2/src
    gcc.compile.c++ ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v2/src/v2_operations.o
    gcc.compile.c++ ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v2/src/v2_path.o
    gcc.compile.c++ ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v2/src/v2_portability.o
    common.mkdir ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v3
    common.mkdir ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v3/src
    gcc.compile.c++ ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v3/src/operations.o
    gcc.compile.c++ ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v3/src/path.o
    gcc.compile.c++ ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v3/src/portability.o
    gcc.compile.c++ ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v3/src/windows_file_codecvt.o
    gcc.compile.c++ ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v3/src/codecvt_error_category.o
    gcc.compile.c++ ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v3/src/path_traits.o
    gcc.compile.c++ ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v3/src/unique_path.o
    gcc.compile.c++ ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/v3/src/utf8_codecvt_facet.o
    gcc.archive ../../bin.v2/libs/filesystem/build/gcc-4.6.2/release/link-static/libboost_filesystem.a
    common.mkdir ../../bin.v2/libs/system
    common.mkdir ../../bin.v2/libs/system/build
    common.mkdir ../../bin.v2/libs/system/build/gcc-4.6.2
    common.mkdir ../../bin.v2/libs/system/build/gcc-4.6.2/release
    common.mkdir ../../bin.v2/libs/system/build/gcc-4.6.2/release/link-static
    gcc.compile.c++ ../../bin.v2/libs/system/build/gcc-4.6.2/release/link-static/error_code.o
    gcc.archive ../../bin.v2/libs/system/build/gcc-4.6.2/release/link-static/libboost_system.a
    gcc.link ../../bin.v2/tools/bcp/gcc-4.6.2/release/link-static/bcp
    common.mkdir ../../dist
    common.mkdir ../../dist/bin
    common.copy ../../dist/bin/bcp
    ...updated 82 targets...
    Building the Boost C++ Libraries.
    Performing configuration checks
    - has_icu builds : no
    warning: Graph library does not contain MPI-based parallel components.
    note: to enable them, add "using mpi ;" to your user-config.jam
    - iconv (libc) : yes
    - icu : no
    - icu (lib64) : no
    - ../config//has_gcc_visibility builds : yes
    - ../config//has_long_double_support builds : yes
    warning: skipping optional Message Passing Interface (MPI) library.
    note: to enable MPI support, add "using mpi ;" to user-config.jam.
    note: to suppress this message, pass "--without-mpi" to bjam.
    note: otherwise, you can safely ignore this message.
    Component configuration:
    - chrono : building
    - date_time : building
    - exception : building
    - filesystem : building
    - graph : building
    - graph_parallel : building
    - iostreams : building
    - locale : building
    - math : building
    - mpi : building
    - program_options : building
    - python : not building
    - random : building
    - regex : building
    - serialization : building
    - signals : building
    - system : building
    - test : building
    - thread : building
    - timer : building
    - wave : building
    ...patience...
    ...patience...
    ...patience...
    ...patience...
    ...found 6866 targets...
    ...updating 880 targets...
    common.mkdir stage
    common.mkdir stage/lib
    common.mkdir bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/c_regex_traits.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/cpp_regex_traits.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/cregex.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/fileiter.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/icu.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/instances.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/posix_api.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/regex.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/regex_debug.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/regex_raw_buffer.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/regex_traits_defaults.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/static_mutex.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/w32_regex_traits.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/wc_regex_traits.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/wide_posix_api.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/winstances.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/usinstances.o
    gcc.link.dll bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_regex.so.1.48.0
    common.copy stage/lib/libboost_regex.so.1.48.0
    ln-UNIX stage/lib/libboost_regex.so
    common.mkdir bin.v2/libs/graph
    common.mkdir bin.v2/libs/graph/build
    common.mkdir bin.v2/libs/graph/build/gcc-4.6.2
    common.mkdir bin.v2/libs/graph/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/graph/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/graph/build/gcc-4.6.2/release/address-model-32/threading-multi
    gcc.compile.c++ bin.v2/libs/graph/build/gcc-4.6.2/release/address-model-32/threading-multi/read_graphviz_new.o
    gcc.compile.c++ bin.v2/libs/graph/build/gcc-4.6.2/release/address-model-32/threading-multi/graphml.o
    gcc.link.dll bin.v2/libs/graph/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_graph.so.1.48.0
    common.copy stage/lib/libboost_graph.so.1.48.0
    ln-UNIX stage/lib/libboost_graph.so
    common.mkdir bin.v2/libs/iostreams
    common.mkdir bin.v2/libs/iostreams/build
    common.mkdir bin.v2/libs/iostreams/build/gcc-4.6.2
    common.mkdir bin.v2/libs/iostreams/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/iostreams/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/iostreams/build/gcc-4.6.2/release/address-model-32/threading-multi
    gcc.compile.c++ bin.v2/libs/iostreams/build/gcc-4.6.2/release/address-model-32/threading-multi/file_descriptor.o
    gcc.compile.c++ bin.v2/libs/iostreams/build/gcc-4.6.2/release/address-model-32/threading-multi/mapped_file.o
    gcc.compile.c++ bin.v2/libs/iostreams/build/gcc-4.6.2/release/address-model-32/threading-multi/zlib.o
    gcc.compile.c++ bin.v2/libs/iostreams/build/gcc-4.6.2/release/address-model-32/threading-multi/gzip.o
    gcc.compile.c++ bin.v2/libs/iostreams/build/gcc-4.6.2/release/address-model-32/threading-multi/bzip2.o
    gcc.link.dll bin.v2/libs/iostreams/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_iostreams.so.1.48.0
    common.copy stage/lib/libboost_iostreams.so.1.48.0
    ln-UNIX stage/lib/libboost_iostreams.so
    common.mkdir bin.v2/libs/locale/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi
    common.mkdir bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/encoding
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/encoding/codepage.o
    common.mkdir bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/shared
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/shared/date_time.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/shared/format.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/shared/formatting.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/shared/generator.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/shared/ids.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/shared/localization_backend.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/shared/message.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/shared/mo_lambda.o
    common.mkdir bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/util
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/util/codecvt_converter.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/util/default_locale.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/util/info.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/util/locale_data.o
    common.mkdir bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/posix
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/posix/codecvt.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/posix/collate.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/posix/converter.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/posix/numeric.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/posix/posix_backend.o
    common.mkdir bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/std
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/std/codecvt.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/std/collate.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/std/converter.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/std/numeric.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/std/std_backend.o
    gcc.compile.c++ bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/util/gregorian.o
    gcc.link.dll bin.v2/libs/locale/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_locale.so.1.48.0
    common.copy stage/lib/libboost_locale.so.1.48.0
    ln-UNIX stage/lib/libboost_locale.so
    common.mkdir bin.v2/libs/math/build
    common.mkdir bin.v2/libs/math/build/gcc-4.6.2
    common.mkdir bin.v2/libs/math/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi
    common.mkdir bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/..
    common.mkdir bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/../src
    common.mkdir bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/../src/tr1
    gcc.compile.c++.pch bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/../src/tr1/pch.hpp.gch
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/assoc_laguerre.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/assoc_legendre.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/beta.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/comp_ellint_1.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/comp_ellint_2.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/comp_ellint_3.o
    ...on 100th target...
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cyl_bessel_i.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cyl_bessel_j.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cyl_bessel_k.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cyl_neumann.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/ellint_1.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/ellint_2.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/ellint_3.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/expint.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/hermite.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/laguerre.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/legendre.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/riemann_zeta.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/sph_bessel.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/sph_legendre.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/sph_neumann.o
    gcc.link.dll bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_math_tr1.so.1.48.0
    common.copy stage/lib/libboost_math_tr1.so.1.48.0
    ln-UNIX stage/lib/libboost_math_tr1.so
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/assoc_laguerref.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/assoc_legendref.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/betaf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/comp_ellint_1f.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/comp_ellint_2f.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/comp_ellint_3f.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cyl_bessel_if.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cyl_bessel_jf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cyl_bessel_kf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cyl_neumannf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/ellint_1f.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/ellint_2f.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/ellint_3f.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/expintf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/hermitef.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/laguerref.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/legendref.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/riemann_zetaf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/sph_besself.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/sph_legendref.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/sph_neumannf.o
    gcc.link.dll bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_math_tr1f.so.1.48.0
    common.copy stage/lib/libboost_math_tr1f.so.1.48.0
    ln-UNIX stage/lib/libboost_math_tr1f.so
    common.mkdir bin.v2/libs/math/config/gcc-4.6.2/release
    common.mkdir bin.v2/libs/math/config/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/math/config/gcc-4.6.2/release/address-model-32/threading-multi
    gcc.compile.c++ bin.v2/libs/math/config/gcc-4.6.2/release/address-model-32/threading-multi/has_long_double_support.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/assoc_laguerrel.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/assoc_legendrel.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/betal.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/comp_ellint_1l.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/comp_ellint_2l.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/comp_ellint_3l.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cyl_bessel_il.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cyl_bessel_jl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cyl_bessel_kl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cyl_neumannl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/ellint_1l.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/ellint_2l.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/ellint_3l.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/expintl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/hermitel.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/laguerrel.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/legendrel.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/riemann_zetal.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/sph_bessell.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/sph_legendrel.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/sph_neumannl.o
    gcc.link.dll bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_math_tr1l.so.1.48.0
    common.copy stage/lib/libboost_math_tr1l.so.1.48.0
    ln-UNIX stage/lib/libboost_math_tr1l.so
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/acosh.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/asinh.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/atanh.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cbrt.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/copysign.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/erfc.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/erf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/expm1.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/fmax.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/fmin.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/fpclassify.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/hypot.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/lgamma.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/llround.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/log1p.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/lround.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/nextafter.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/nexttoward.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/round.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/tgamma.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/trunc.o
    gcc.link.dll bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_math_c99.so.1.48.0
    common.copy stage/lib/libboost_math_c99.so.1.48.0
    ln-UNIX stage/lib/libboost_math_c99.so
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/acoshf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/asinhf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/atanhf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cbrtf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/copysignf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/erfcf.o
    ...on 200th target...
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/erff.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/expm1f.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/fmaxf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/fminf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/fpclassifyf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/hypotf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/lgammaf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/llroundf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/log1pf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/lroundf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/nextafterf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/nexttowardf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/roundf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/tgammaf.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/truncf.o
    gcc.link.dll bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_math_c99f.so.1.48.0
    common.copy stage/lib/libboost_math_c99f.so.1.48.0
    ln-UNIX stage/lib/libboost_math_c99f.so
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/acoshl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/asinhl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/atanhl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/cbrtl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/copysignl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/erfcl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/erfl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/expm1l.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/fmaxl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/fminl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/fpclassifyl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/hypotl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/lgammal.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/llroundl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/log1pl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/lroundl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/nextafterl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/nexttowardl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/roundl.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/tgammal.o
    gcc.compile.c++ bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/truncl.o
    gcc.link.dll bin.v2/libs/math/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_math_c99l.so.1.48.0
    common.copy stage/lib/libboost_math_c99l.so.1.48.0
    ln-UNIX stage/lib/libboost_math_c99l.so
    common.mkdir bin.v2/libs/program_options
    common.mkdir bin.v2/libs/program_options/build
    common.mkdir bin.v2/libs/program_options/build/gcc-4.6.2
    common.mkdir bin.v2/libs/program_options/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32/threading-multi
    gcc.compile.c++ bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32/threading-multi/cmdline.o
    gcc.compile.c++ bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32/threading-multi/config_file.o
    gcc.compile.c++ bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32/threading-multi/options_description.o
    gcc.compile.c++ bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32/threading-multi/parsers.o
    gcc.compile.c++ bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32/threading-multi/variables_map.o
    gcc.compile.c++ bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32/threading-multi/value_semantic.o
    gcc.compile.c++ bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32/threading-multi/positional_options.o
    gcc.compile.c++ bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32/threading-multi/utf8_codecvt_facet.o
    gcc.compile.c++ bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32/threading-multi/convert.o
    gcc.compile.c++ bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32/threading-multi/winmain.o
    gcc.compile.c++ bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32/threading-multi/split.o
    gcc.link.dll bin.v2/libs/program_options/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_program_options.so.1.48.0
    common.copy stage/lib/libboost_program_options.so.1.48.0
    ln-UNIX stage/lib/libboost_program_options.so
    common.mkdir bin.v2/libs/random
    common.mkdir bin.v2/libs/random/build
    common.mkdir bin.v2/libs/random/build/gcc-4.6.2
    common.mkdir bin.v2/libs/random/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/random/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/random/build/gcc-4.6.2/release/address-model-32/threading-multi
    gcc.compile.c++ bin.v2/libs/random/build/gcc-4.6.2/release/address-model-32/threading-multi/random_device.o
    gcc.link.dll bin.v2/libs/random/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_random.so.1.48.0
    common.copy stage/lib/libboost_random.so.1.48.0
    ln-UNIX stage/lib/libboost_random.so
    common.mkdir bin.v2/libs/serialization
    common.mkdir bin.v2/libs/serialization/build
    common.mkdir bin.v2/libs/serialization/build/gcc-4.6.2
    common.mkdir bin.v2/libs/serialization/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/basic_archive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/basic_iarchive.o
    libs/serialization/src/basic_iarchive.cpp: In member function ‘const boost::archive::detail::basic_pointer_iserializer* boost::archive::detail::basic_iarchive_impl::load_pointer(boost::archive::detail::basic_iarchive&, void*&, const boost::archive::detail::basic_pointer_iserializer*, const boost::archive::detail::basic_pointer_iserializer* (*)(const boost::serialization::extended_type_info&))’:
    libs/serialization/src/basic_iarchive.cpp:437:23: warning: variable ‘new_cid’ set but not used [-Wunused-but-set-variable]
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/basic_iserializer.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/basic_oarchive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/basic_oserializer.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/basic_pointer_iserializer.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/basic_pointer_oserializer.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/basic_serializer_map.o
    libs/serialization/src/basic_serializer_map.cpp: In member function ‘bool boost::archive::detail::basic_serializer_map::insert(const boost::archive::detail::basic_serializer*)’:
    libs/serialization/src/basic_serializer_map.cpp:46:47: warning: variable ‘result’ set but not used [-Wunused-but-set-variable]
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/basic_text_iprimitive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/basic_text_oprimitive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/basic_xml_archive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/binary_iarchive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/binary_oarchive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/extended_type_info.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/extended_type_info_typeid.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/extended_type_info_no_rtti.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/polymorphic_iarchive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/polymorphic_oarchive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/stl_port.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/text_iarchive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/text_oarchive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/void_cast.o
    ...on 300th target...
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/archive_exception.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/xml_grammar.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/xml_iarchive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/xml_oarchive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/xml_archive_exception.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/shared_ptr_helper.o
    gcc.link.dll bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_serialization.so.1.48.0
    common.copy stage/lib/libboost_serialization.so.1.48.0
    ln-UNIX stage/lib/libboost_serialization.so
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/basic_text_wiprimitive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/basic_text_woprimitive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/text_wiarchive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/text_woarchive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/utf8_codecvt_facet.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/xml_wgrammar.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/xml_wiarchive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/xml_woarchive.o
    gcc.compile.c++ bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/codecvt_null.o
    gcc.link.dll bin.v2/libs/serialization/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_wserialization.so.1.48.0
    common.copy stage/lib/libboost_wserialization.so.1.48.0
    ln-UNIX stage/lib/libboost_wserialization.so
    common.mkdir bin.v2/libs/signals
    common.mkdir bin.v2/libs/signals/build
    common.mkdir bin.v2/libs/signals/build/gcc-4.6.2
    common.mkdir bin.v2/libs/signals/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/signals/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/signals/build/gcc-4.6.2/release/address-model-32/threading-multi
    gcc.compile.c++ bin.v2/libs/signals/build/gcc-4.6.2/release/address-model-32/threading-multi/trackable.o
    gcc.compile.c++ bin.v2/libs/signals/build/gcc-4.6.2/release/address-model-32/threading-multi/connection.o
    gcc.compile.c++ bin.v2/libs/signals/build/gcc-4.6.2/release/address-model-32/threading-multi/named_slot_map.o
    gcc.compile.c++ bin.v2/libs/signals/build/gcc-4.6.2/release/address-model-32/threading-multi/signal_base.o
    gcc.compile.c++ bin.v2/libs/signals/build/gcc-4.6.2/release/address-model-32/threading-multi/slot.o
    gcc.link.dll bin.v2/libs/signals/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_signals.so.1.48.0
    common.copy stage/lib/libboost_signals.so.1.48.0
    ln-UNIX stage/lib/libboost_signals.so
    common.mkdir bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/execution_monitor.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/debug.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/cpp_main.o
    gcc.link.dll bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_prg_exec_monitor.so.1.48.0
    common.copy stage/lib/libboost_prg_exec_monitor.so.1.48.0
    ln-UNIX stage/lib/libboost_prg_exec_monitor.so
    common.mkdir bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static
    common.mkdir bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/compiler_log_formatter.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/debug.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/execution_monitor.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/framework.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/plain_report_formatter.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/progress_monitor.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/results_collector.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/results_reporter.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/test_main.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/test_tools.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/unit_test_log.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/unit_test_main.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/unit_test_monitor.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/unit_test_parameters.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/unit_test_suite.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/xml_log_formatter.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/xml_report_formatter.o
    gcc.archive bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/libboost_test_exec_monitor.a
    common.copy stage/lib/libboost_test_exec_monitor.a
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/compiler_log_formatter.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/exception_safety.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/framework.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/interaction_based.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/logged_expectations.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/plain_report_formatter.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/progress_monitor.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/results_collector.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/results_reporter.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/test_tools.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/unit_test_log.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/unit_test_main.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/unit_test_monitor.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/unit_test_parameters.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/unit_test_suite.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/xml_log_formatter.o
    gcc.compile.c++ bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/xml_report_formatter.o
    gcc.link.dll bin.v2/libs/test/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_unit_test_framework.so.1.48.0
    common.copy stage/lib/libboost_unit_test_framework.so.1.48.0
    ln-UNIX stage/lib/libboost_unit_test_framework.so
    common.mkdir bin.v2/libs/thread
    common.mkdir bin.v2/libs/thread/build
    common.mkdir bin.v2/libs/thread/build/gcc-4.6.2
    common.mkdir bin.v2/libs/thread/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/thread/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/thread/build/gcc-4.6.2/release/address-model-32/threading-multi
    common.mkdir bin.v2/libs/thread/build/gcc-4.6.2/release/address-model-32/threading-multi/pthread
    gcc.compile.c++ bin.v2/libs/thread/build/gcc-4.6.2/release/address-model-32/threading-multi/pthread/thread.o
    In file included from libs/thread/src/pthread/thread.cpp:26:0:
    libs/thread/src/pthread/timeconv.inl: In function ‘void {anonymous}::to_time(int, boost::xtime&)’:
    libs/thread/src/pthread/timeconv.inl:22:9: warning: variable ‘res’ set but not used [-Wunused-but-set-variable]
    libs/thread/src/pthread/timeconv.inl: In function ‘void {anonymous}::to_timespec_duration(const boost::xtime&, timespec&)’:
    libs/thread/src/pthread/timeconv.inl:59:9: warning: variable ‘res’ set but not used [-Wunused-but-set-variable]
    libs/thread/src/pthread/timeconv.inl: In function ‘void {anonymous}::to_duration(boost::xtime, int&)’:
    libs/thread/src/pthread/timeconv.inl:90:9: warning: variable ‘res’ set but not used [-Wunused-but-set-variable]
    libs/thread/src/pthread/timeconv.inl: In function ‘void {anonymous}::to_microduration(boost::xtime, int&)’:
    libs/thread/src/pthread/timeconv.inl:112:9: warning: variable ‘res’ set but not used [-Wunused-but-set-variable]
    gcc.compile.c++ bin.v2/libs/thread/build/gcc-4.6.2/release/address-model-32/threading-multi/pthread/once.o
    gcc.link.dll bin.v2/libs/thread/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_thread.so.1.48.0
    common.copy stage/lib/libboost_thread.so.1.48.0
    ln-UNIX stage/lib/libboost_thread.so
    common.mkdir bin.v2/libs/timer
    common.mkdir bin.v2/libs/timer/build
    common.mkdir bin.v2/libs/timer/build/gcc-4.6.2
    ...on 400th target...
    common.mkdir bin.v2/libs/timer/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/timer/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/timer/build/gcc-4.6.2/release/address-model-32/threading-multi
    gcc.compile.c++ bin.v2/libs/timer/build/gcc-4.6.2/release/address-model-32/threading-multi/auto_timers_construction.o
    gcc.compile.c++ bin.v2/libs/timer/build/gcc-4.6.2/release/address-model-32/threading-multi/cpu_timer.o
    common.mkdir bin.v2/libs/chrono
    common.mkdir bin.v2/libs/chrono/build
    common.mkdir bin.v2/libs/chrono/build/gcc-4.6.2
    common.mkdir bin.v2/libs/chrono/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/chrono/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/chrono/build/gcc-4.6.2/release/address-model-32/threading-multi
    gcc.compile.c++ bin.v2/libs/chrono/build/gcc-4.6.2/release/address-model-32/threading-multi/chrono.o
    gcc.compile.c++ bin.v2/libs/chrono/build/gcc-4.6.2/release/address-model-32/threading-multi/thread_clock.o
    gcc.compile.c++ bin.v2/libs/chrono/build/gcc-4.6.2/release/address-model-32/threading-multi/process_cpu_clocks.o
    In file included from ./boost/chrono/detail/inlined/process_cpu_clocks.hpp:39:0,
    from libs/chrono/src/process_cpu_clocks.cpp:17:
    ./boost/chrono/detail/inlined/posix/process_cpu_clocks.hpp: In static member function ‘static boost::chrono::process_system_cpu_clock::time_point boost::chrono::process_system_cpu_clock::now()’:
    ./boost/chrono/detail/inlined/posix/process_cpu_clocks.hpp:218:1: warning: control reaches end of non-void function [-Wreturn-type]
    common.mkdir bin.v2/libs/system/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/system/build/gcc-4.6.2/release/address-model-32/threading-multi
    gcc.compile.c++ bin.v2/libs/system/build/gcc-4.6.2/release/address-model-32/threading-multi/error_code.o
    gcc.link.dll bin.v2/libs/system/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_system.so.1.48.0
    gcc.link.dll bin.v2/libs/chrono/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_chrono.so.1.48.0
    gcc.link.dll bin.v2/libs/timer/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_timer.so.1.48.0
    common.copy stage/lib/libboost_timer.so.1.48.0
    ln-UNIX stage/lib/libboost_timer.so
    common.mkdir bin.v2/libs/wave
    common.mkdir bin.v2/libs/wave/build
    common.mkdir bin.v2/libs/wave/build/gcc-4.6.2
    common.mkdir bin.v2/libs/wave/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi
    gcc.compile.c++ bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/instantiate_cpp_exprgrammar.o
    gcc.compile.c++ bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/instantiate_cpp_grammar.o
    gcc.compile.c++ bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/instantiate_cpp_literalgrs.o
    gcc.compile.c++ bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/instantiate_defined_grammar.o
    gcc.compile.c++ bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/instantiate_predef_macros.o
    gcc.compile.c++ bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/instantiate_re2c_lexer.o
    gcc.compile.c++ bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/instantiate_re2c_lexer_str.o
    gcc.compile.c++ bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/token_ids.o
    gcc.compile.c++ bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/wave_config_constant.o
    common.mkdir bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/cpplexer
    common.mkdir bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/cpplexer/re2clex
    gcc.compile.c++ bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/cpplexer/re2clex/aq.o
    gcc.compile.c++ bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/cpplexer/re2clex/cpp_re.o
    common.mkdir bin.v2/libs/date_time
    common.mkdir bin.v2/libs/date_time/build
    common.mkdir bin.v2/libs/date_time/build/gcc-4.6.2
    common.mkdir bin.v2/libs/date_time/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32/threading-multi
    common.mkdir bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32/threading-multi/gregorian
    gcc.compile.c++ bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32/threading-multi/gregorian/greg_month.o
    gcc.compile.c++ bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32/threading-multi/gregorian/greg_weekday.o
    gcc.compile.c++ bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32/threading-multi/gregorian/date_generators.o
    gcc.link.dll bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_date_time.so.1.48.0
    common.mkdir bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi
    common.mkdir bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v2
    common.mkdir bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v2/src
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v2/src/v2_operations.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v2/src/v2_path.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v2/src/v2_portability.o
    common.mkdir bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v3
    common.mkdir bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v3/src
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v3/src/operations.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v3/src/path.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v3/src/portability.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v3/src/windows_file_codecvt.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v3/src/codecvt_error_category.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v3/src/path_traits.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v3/src/unique_path.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/v3/src/utf8_codecvt_facet.o
    gcc.link.dll bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_filesystem.so.1.48.0
    gcc.link.dll bin.v2/libs/wave/build/gcc-4.6.2/release/address-model-32/threading-multi/libboost_wave.so.1.48.0
    common.copy stage/lib/libboost_wave.so.1.48.0
    ln-UNIX stage/lib/libboost_wave.so
    common.copy stage/lib/libboost_system.so.1.48.0
    ln-UNIX stage/lib/libboost_system.so
    common.copy stage/lib/libboost_chrono.so.1.48.0
    ln-UNIX stage/lib/libboost_chrono.so
    common.copy stage/lib/libboost_date_time.so.1.48.0
    ln-UNIX stage/lib/libboost_date_time.so
    common.mkdir bin.v2/libs/exception
    common.mkdir bin.v2/libs/exception/build
    common.mkdir bin.v2/libs/exception/build/gcc-4.6.2
    common.mkdir bin.v2/libs/exception/build/gcc-4.6.2/release
    common.mkdir bin.v2/libs/exception/build/gcc-4.6.2/release/address-model-32
    common.mkdir bin.v2/libs/exception/build/gcc-4.6.2/release/address-model-32/link-static
    common.mkdir bin.v2/libs/exception/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi
    gcc.compile.c++ bin.v2/libs/exception/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/clone_current_exception_non_intrusive.o
    gcc.archive bin.v2/libs/exception/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/libboost_exception.a
    common.copy stage/lib/libboost_exception.a
    common.copy stage/lib/libboost_filesystem.so.1.48.0
    ln-UNIX stage/lib/libboost_filesystem.so
    common.mkdir bin.v2/libs/system/build/gcc-4.6.2/release/address-model-32/link-static
    common.mkdir bin.v2/libs/system/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi
    gcc.compile.c++ bin.v2/libs/system/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/error_code.o
    gcc.archive bin.v2/libs/system/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/libboost_system.a
    common.copy stage/lib/libboost_system.a
    common.mkdir bin.v2/libs/chrono/build/gcc-4.6.2/release/address-model-32/link-static
    common.mkdir bin.v2/libs/chrono/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi
    ...on 500th target...
    gcc.compile.c++ bin.v2/libs/chrono/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/chrono.o
    gcc.compile.c++ bin.v2/libs/chrono/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/thread_clock.o
    gcc.compile.c++ bin.v2/libs/chrono/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/process_cpu_clocks.o
    In file included from ./boost/chrono/detail/inlined/process_cpu_clocks.hpp:39:0,
    from libs/chrono/src/process_cpu_clocks.cpp:17:
    ./boost/chrono/detail/inlined/posix/process_cpu_clocks.hpp: In static member function ‘static boost::chrono::process_system_cpu_clock::time_point boost::chrono::process_system_cpu_clock::now()’:
    ./boost/chrono/detail/inlined/posix/process_cpu_clocks.hpp:218:1: warning: control reaches end of non-void function [-Wreturn-type]
    gcc.archive bin.v2/libs/chrono/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/libboost_chrono.a
    common.copy stage/lib/libboost_chrono.a
    common.mkdir bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32/link-static
    common.mkdir bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi
    common.mkdir bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/gregorian
    gcc.compile.c++ bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/gregorian/greg_month.o
    gcc.compile.c++ bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/gregorian/greg_weekday.o
    gcc.compile.c++ bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/gregorian/date_generators.o
    gcc.archive bin.v2/libs/date_time/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/libboost_date_time.a
    common.copy stage/lib/libboost_date_time.a
    common.mkdir bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static
    common.mkdir bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi
    common.mkdir bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v2
    common.mkdir bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v2/src
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v2/src/v2_operations.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v2/src/v2_path.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v2/src/v2_portability.o
    common.mkdir bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v3
    common.mkdir bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v3/src
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v3/src/operations.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v3/src/path.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v3/src/portability.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v3/src/windows_file_codecvt.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v3/src/codecvt_error_category.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v3/src/path_traits.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v3/src/unique_path.o
    gcc.compile.c++ bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/v3/src/utf8_codecvt_facet.o
    gcc.archive bin.v2/libs/filesystem/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/libboost_filesystem.a
    common.copy stage/lib/libboost_filesystem.a
    common.mkdir bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/link-static
    common.mkdir bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/c_regex_traits.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/cpp_regex_traits.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/cregex.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/fileiter.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/icu.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/instances.o
    gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.6.2/release/address-model-32/link-static/threading-multi/posix_api.o
    gcc.c

  • Can not boost

    macbook pro 15'  it won't start up, just showing a gray screen with apple logo on it, a runing wheel..... for 30 minutes.
    help, urgent!

    Kind of late, but I noticed this thread is marked as unanswered.
    Just a quick note. Simon's blob doesn't report it, so that might not even be necessary:
    If you build boost from scratch, you need to patch libs/python/src/object/class.cpp
    453:  object module_prefix()
    454:  {
    455:      return object(
    456:          PyObject_IsInstance(scope().ptr(), upcast<PyObject>(&PyModule_Type))
    457:          ? object(scope().attr("__name__"))
    458:          : api::getattr(scope(), (const char*)"__module__", str()) // Added the cast to const char*
    459:          );
    460:  }After that, just type make and wait until everything is built.

  • Problems installing python-chess

    I need to install python-chess package:
    https://pypi.python.org/pypi/python-chess
    The author states the following is needed for installation:
    Building
    libboost-regex-dev and libboost-python-dev are required.
    I assume that he's talking about ubuntu based systems. I have boost installed, but am not sure do I need something else:
    pacman -Ss boost
    extra/boost 1.54.0-4 [installed]
    Free peer-reviewed portable C++ source libraries - Development
    extra/boost-libs 1.54.0-4 [installed]
    Free peer-reviewed portable C++ source libraries - Runtime
    community/boost-build 2.0_m12-5 [installed]
    Boost build system
    During installation, using easy_install I get the following warning, but it seems to install ok:
    easy_install --user python-chess
    Searching for python-chess
    Reading https://pypi.python.org/simple/python-chess/
    Best match: python-chess 0.0.5
    Downloading https://pypi.python.org/packages/source/p/python-chess/python-chess-0.0.5.tar.gz#md5=456efb47a1431c16472b27063269e85b
    Processing python-chess-0.0.5.tar.gz
    Writing /tmp/easy_install-skh87f/python-chess-0.0.5/setup.cfg
    Running python-chess-0.0.5/setup.py -q bdist_egg --dist-dir /tmp/easy_install-skh87f/python-chess-0.0.5/egg-dist-tmp-xfxhpk
    Not SVN Repository
    cc1plus: warning: command line option '-Wstrict-prototypes' is valid for C/ObjC but not for C++ [enabled by default]
    cc1plus: warning: command line option '-Wstrict-prototypes' is valid for C/ObjC but not for C++ [enabled by default]
    cc1plus: warning: command line option '-Wstrict-prototypes' is valid for C/ObjC but not for C++ [enabled by default]
    cc1plus: warning: command line option '-Wstrict-prototypes' is valid for C/ObjC but not for C++ [enabled by default]
    cc1plus: warning: command line option '-Wstrict-prototypes' is valid for C/ObjC but not for C++ [enabled by default]
    cc1plus: warning: command line option '-Wstrict-prototypes' is valid for C/ObjC but not for C++ [enabled by default]
    cc1plus: warning: command line option '-Wstrict-prototypes' is valid for C/ObjC but not for C++ [enabled by default]
    cc1plus: warning: command line option '-Wstrict-prototypes' is valid for C/ObjC but not for C++ [enabled by default]
    cc1plus: warning: command line option '-Wstrict-prototypes' is valid for C/ObjC but not for C++ [enabled by default]
    cc1plus: warning: command line option '-Wstrict-prototypes' is valid for C/ObjC but not for C++ [enabled by default]
    zip_safe flag not set; analyzing archive contents...
    __pycache__.libchess.cpython-33: module references __file__
    Adding python-chess 0.0.5 to easy-install.pth file
    Installing ecotool.py script to /home/ed/.local/bin
    Installed /home/ed/.local/lib/python3.3/site-packages/python_chess-0.0.5-py3.3-linux-x86_64.egg
    Processing dependencies for python-chess
    Finished processing dependencies for python-chess
    Finally, it seems that installation is finished but I get an error:
    import chess
    import chess
    ImportError Traceback (most recent call last)
    <ipython-input-1-31dd7659fda0> in <module>()
    ----> 1 import chess
    /home/ed/.local/lib/python3.3/site-packages/python_chess-0.0.5-py3.3-linux-x86_64.egg/chess/__init__.py in <module>()
    28
    29 # Import from libchess.
    ---> 30 from libchess import START_FEN
    31 from libchess import opposite_color
    32 from libchess import Square
    ImportError: /usr/lib/libboost_python.so.1.54.0: undefined symbol: PyClass_Type
    Btw, the library works fine with python 2.7.
    Last edited by enedene (2013-11-28 14:10:33)

    Python is not an app, it's an operating programme, like Flash or Java, you won't get an icon. By the way, why do you want Python ? I have it and it makes a novelty Beer programme fill screen then empty when tilted ! Only bothered with it because I have a mate who thought his fruit based product was the best thing since sliced bread, worry about Python if you find something you really want that requires it to work !
    Good Luck
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Compilation errors with boost 1.36

    Hi,
    My compiler
    CC: Sun WorkShop 6 update 2 C++ 5.3 Patch 111685-08 2002/06/02
    I am getting the followin*g errors when trying to compile
    Error: Default arguments cannot be added in later declarations of the template function in the same scope.
    "./boost/math/tools/precision.hpp", line 108: Error: Default arguments cannot be added in later declarations of the template function in the same scope.
    "./boost/math/tools/precision.hpp", line 116: Error: Default arguments cannot be added in later declarations of the template function in the same scope.
    "./boost/math/tools/precision.hpp", line 122: Error: Default arguments cannot be added in later declarations of the template function in the same scope.
    "./boost/math/tools/precision.hpp", line 128: Error: Default arguments cannot be added in later declarations of the template function in the same scope.
    "./boost/math/tools/precision.hpp", line 141: Error: Default arguments cannot be added in later declarations of the template function in the same scope.
    "./boost/math/tools/precision.hpp", line 172: Error: Default arguments cannot be added in later declarations of the template function in the same scope.
    I have done configuration as following
    %> ./configure with-toolset=sun prefix=/u/jn/boost/boost_1_36_0
    my usr-config.jam file looks as below
    # Boost.Build Configuration
    # Automatically generated by Boost configure
    # Compiler configuration
    using sun : 6 : /home/nfs/sollocal/beatlehome1/F6U2/SUNWspro/bin/CC : <stdlib>sun-stlport
    <cxxflags>-library=stlport4 -m64 -xcode=pic32 -erroff=wvarhidemem,hidevf,hidevfinvb -errtag
    s=yes <linkflags>-library=stlport4 -m64 ;
    # Python configuration
    using python : 2.6 : /usr/local ;
    my Makefile
    BJAM=./tools/jam/src/bin.solaris/bjam
    BJAM_CONFIG= -sICU_PATH=/usr
    prefix=/u/jnarayan/boost/boost_1_36_0
    exec_prefix=$(prefix)
    libdir=$(exec_prefix)/lib
    includedir=$(prefix)/include
    LIBS=
    all: .dummy
    @echo "$(BJAM) $(BJAM_CONFIG) --user-config=user-config.jam $(LIBS)"
    @$(BJAM) $(BJAM_CONFIG) --user-config=user-config.jam $(LIBS) || \
    echo "Not all Boost libraries built properly."
    clean: .dummy
    rm -rf bin.v2
    distclean: clean
    rm -rf Makefile config.log
    check: .dummy
    @cd status && ../$(BJAM) $(BJAM_CONFIG) --user-config=../user-config.jam || echo "S
    ome Boost regression tests failed. This is normal for many compilers."
    install: .dummy
    @echo "$(BJAM) $(BJAM_CONFIG) address-model=64 user-config=user-config.jam pref
    ix=$(prefix) exec-prefix=$(exec_prefix) libdir=$(libdir) --includedir=$(includedir) $(L
    IBS) install"
    @$(BJAM) $(BJAM_CONFIG) address-model=64 --user-config=user-config.jam --prefix=$(p
    refix) --exec-prefix=$(exec_prefix) --libdir=$(libdir) --includedir=$(includedir) $(LIBS) i
    nstall || echo "Not all Boost libraries built properly."
    .dummy:
    thanks in advance for your help

    BOOST cannot be compiled with WS6u2.
    The oldest compiler that can build BOOST is Sun Studio 11 (C++ 5.8).
    You will have better luck with Sun Studio 12 (C++ 5.9). Both Studio 11 and Studio 12 are free.
    Get Sun Studio 12 here:
    [http://developers.sun.com/sunstudio/]
    Sun Studio 12 requires Solaris 9, 10, or Open Solaris.
    If you are running Solaris 8, get Sun Studio 11 instead:
    [http://developers.sun.com/sunstudio/products/previous/11/index.jsp]
    After installing the appropriate version of Sun Studio, get all current patches for it here:
    [http://developers.sun.com/sunstudio/downloads/patches/index.jsp]
    Then check Simon's blog for advice on building BOOST with Sun Studio 11 or 12.
    [http://blogs.sun.com/sga/category/Boost]

  • Gx2osd's waf not finding boost libs

    (excuse the C++, boost and waf ignorance that may be contained below)
    I'm trying to build gx2osd for xmms2 and have come across an issue where the build fails:
    $ ./waf configure --prefix=/usr
    /data/aur/gx2osd/src/gx2osd/.waf-1.1.0-1300596208/wafadmin/Params.py:7: DeprecationWarning: the md5 module is deprecated; use hashlib instead
    import os, sys, types, inspect, md5, base64, stat
    Checking for program g++ : ok /usr/bin/g++
    Checking for program cpp : ok /usr/bin/cpp
    Checking for program ar : ok /usr/bin/ar
    Checking for program ranlib : ok /usr/bin/ranlib
    Checking for package xmms2-client-cpp : ok
    Checking for package xmms2-client-cpp-glib : ok
    Checking for package gtkmm-2.4 : ok
    Checking for package cairomm-1.0 : ok
    Checking for package libglademm-2.4 : ok
    Checking for header boost/program_options.hpp : ok
    Checking for library boost_program_options : ok
    Checking for header boost/filesystem/path.hpp : not found
    header boost/filesystem/path.hpp cannot be found via compiler
    Verbose shows:
    Checking for package libglademm-2.4 : ok
    /usr/bin/g++ -Wall -Wextra -ansi -pedantic -pipe -ggdb3 -I. -Idefault -Idefault/ -I.. ../test.c -c -o default/test.o
    /usr/bin/g++ default/test.o -o default/testprog
    Checking for header boost/program_options.hpp : ok
    /usr/bin/g++ -Wall -Wextra -ansi -pedantic -pipe -ggdb3 -I. -Idefault -Idefault/ -I.. ../test.c -c -o default/test.o
    /usr/bin/g++ default/test.o -o default/testprog -L/usr/lib/ -Wl,-Bdynamic -lboost_program_options
    Checking for library boost_program_options : ok
    /usr/bin/g++ -Wall -Wextra -ansi -pedantic -pipe -ggdb3 -I. -Idefault -Idefault/ -I.. ../test.c -c -o default/test.o
    /usr/bin/g++ default/test.o -o default/testprog
    default/test.o: In function `__static_initialization_and_destruction_0':
    /usr/include/boost/system/error_code.hpp:208: undefined reference to `boost::system::get_system_category()'
    /usr/include/boost/system/error_code.hpp:209: undefined reference to `boost::system::get_generic_category()'
    /usr/include/boost/system/error_code.hpp:214: undefined reference to `boost::system::get_generic_category()'
    /usr/include/boost/system/error_code.hpp:215: undefined reference to `boost::system::get_generic_category()'
    /usr/include/boost/system/error_code.hpp:216: undefined reference to `boost::system::get_system_category()'
    collect2: ld returned 1 exit status
    ERROR: == Runner == task failed! (return code 129 for #1)
    ERROR: == Task == -- task details begin --
    action: cpp_link
    idx: 1
    source: [<b:/data/aur/gx2osd/src/gx2osd/build/.wscript-trybuild/test.o>]
    target: [<b:/data/aur/gx2osd/src/gx2osd/build/.wscript-trybuild/testprog>]
    -- task details end --
    Checking for header boost/filesystem/path.hpp : not found
    header boost/filesystem/path.hpp cannot be found via compiler
    (error raised in module Configure)
    I do have that however, and in the same location as the program_options.hpp:
    $ find /usr/include/boost/ -name program_options.hpp -o -name path.hpp
    /usr/include/boost/filesystem/path.hpp
    /usr/include/boost/program_options.hpp
    /usr/include/boost/iostreams/detail/path.hpp
    Looks like it's in the linking, not the compiling that it's having trouble though anyway.
    The only thing I could find that might be related was this page stating that "The boost libraries detection has a few open issues" though I'm not sure if it's the same issue or not: http://groups.google.com/group/waf-user … d03b3a6bee
    $ ./waf --version
    /data/aur/gx2osd/src/gx2osd/.waf-1.1.0-1300596208/wafadmin/Params.py:7: DeprecationWarning: the md5 module is deprecated; use hashlib instead
    import os, sys, types, inspect, md5, base64, stat
    waf 1.1.0
    I tried using the waf version from AUR (1.5.18) instead of the one provided too but they appear to not be compatible with the wscript.
    Has anyone built this on Arch and if so, how?  If anyone could shed some light on this I would appreciate it as I don't really know much about C++, boost, waf or python
    The wscript file in the src directory seems ... reasonable (in that the program_options part seems the same as the filesystem/path part) though of course this is all guess work on my part:
    e = conf.create_header_configurator()
    e.mandatory = 1
    e.name = "boost/program_options.hpp"
    e.run()
    libconf = conf.create_library_configurator()
    libconf.uselib = 'program_options'
    libconf.name = 'boost_program_options'
    ret = libconf.run()
    if not ret:
    libconf.mandatory = 1
    libconf.name = 'boost_program_options-st'
    libconf.run()
    e.name = 'boost/filesystem/path.hpp'
    e.run()
    libconf.mandatory = 0
    libconf.uselib = 'filesystem'
    libconf.name = 'boost_filesystem'
    ret = libconf.run()
    if not ret:
    libconf.mandatory = 1
    libconf.name = 'boost_filesystem-st'
    libconf.run()

    (excuse the C++, boost and waf ignorance that may be contained below)
    I'm trying to build gx2osd for xmms2 and have come across an issue where the build fails:
    $ ./waf configure --prefix=/usr
    /data/aur/gx2osd/src/gx2osd/.waf-1.1.0-1300596208/wafadmin/Params.py:7: DeprecationWarning: the md5 module is deprecated; use hashlib instead
    import os, sys, types, inspect, md5, base64, stat
    Checking for program g++ : ok /usr/bin/g++
    Checking for program cpp : ok /usr/bin/cpp
    Checking for program ar : ok /usr/bin/ar
    Checking for program ranlib : ok /usr/bin/ranlib
    Checking for package xmms2-client-cpp : ok
    Checking for package xmms2-client-cpp-glib : ok
    Checking for package gtkmm-2.4 : ok
    Checking for package cairomm-1.0 : ok
    Checking for package libglademm-2.4 : ok
    Checking for header boost/program_options.hpp : ok
    Checking for library boost_program_options : ok
    Checking for header boost/filesystem/path.hpp : not found
    header boost/filesystem/path.hpp cannot be found via compiler
    Verbose shows:
    Checking for package libglademm-2.4 : ok
    /usr/bin/g++ -Wall -Wextra -ansi -pedantic -pipe -ggdb3 -I. -Idefault -Idefault/ -I.. ../test.c -c -o default/test.o
    /usr/bin/g++ default/test.o -o default/testprog
    Checking for header boost/program_options.hpp : ok
    /usr/bin/g++ -Wall -Wextra -ansi -pedantic -pipe -ggdb3 -I. -Idefault -Idefault/ -I.. ../test.c -c -o default/test.o
    /usr/bin/g++ default/test.o -o default/testprog -L/usr/lib/ -Wl,-Bdynamic -lboost_program_options
    Checking for library boost_program_options : ok
    /usr/bin/g++ -Wall -Wextra -ansi -pedantic -pipe -ggdb3 -I. -Idefault -Idefault/ -I.. ../test.c -c -o default/test.o
    /usr/bin/g++ default/test.o -o default/testprog
    default/test.o: In function `__static_initialization_and_destruction_0':
    /usr/include/boost/system/error_code.hpp:208: undefined reference to `boost::system::get_system_category()'
    /usr/include/boost/system/error_code.hpp:209: undefined reference to `boost::system::get_generic_category()'
    /usr/include/boost/system/error_code.hpp:214: undefined reference to `boost::system::get_generic_category()'
    /usr/include/boost/system/error_code.hpp:215: undefined reference to `boost::system::get_generic_category()'
    /usr/include/boost/system/error_code.hpp:216: undefined reference to `boost::system::get_system_category()'
    collect2: ld returned 1 exit status
    ERROR: == Runner == task failed! (return code 129 for #1)
    ERROR: == Task == -- task details begin --
    action: cpp_link
    idx: 1
    source: [<b:/data/aur/gx2osd/src/gx2osd/build/.wscript-trybuild/test.o>]
    target: [<b:/data/aur/gx2osd/src/gx2osd/build/.wscript-trybuild/testprog>]
    -- task details end --
    Checking for header boost/filesystem/path.hpp : not found
    header boost/filesystem/path.hpp cannot be found via compiler
    (error raised in module Configure)
    I do have that however, and in the same location as the program_options.hpp:
    $ find /usr/include/boost/ -name program_options.hpp -o -name path.hpp
    /usr/include/boost/filesystem/path.hpp
    /usr/include/boost/program_options.hpp
    /usr/include/boost/iostreams/detail/path.hpp
    Looks like it's in the linking, not the compiling that it's having trouble though anyway.
    The only thing I could find that might be related was this page stating that "The boost libraries detection has a few open issues" though I'm not sure if it's the same issue or not: http://groups.google.com/group/waf-user … d03b3a6bee
    $ ./waf --version
    /data/aur/gx2osd/src/gx2osd/.waf-1.1.0-1300596208/wafadmin/Params.py:7: DeprecationWarning: the md5 module is deprecated; use hashlib instead
    import os, sys, types, inspect, md5, base64, stat
    waf 1.1.0
    I tried using the waf version from AUR (1.5.18) instead of the one provided too but they appear to not be compatible with the wscript.
    Has anyone built this on Arch and if so, how?  If anyone could shed some light on this I would appreciate it as I don't really know much about C++, boost, waf or python
    The wscript file in the src directory seems ... reasonable (in that the program_options part seems the same as the filesystem/path part) though of course this is all guess work on my part:
    e = conf.create_header_configurator()
    e.mandatory = 1
    e.name = "boost/program_options.hpp"
    e.run()
    libconf = conf.create_library_configurator()
    libconf.uselib = 'program_options'
    libconf.name = 'boost_program_options'
    ret = libconf.run()
    if not ret:
    libconf.mandatory = 1
    libconf.name = 'boost_program_options-st'
    libconf.run()
    e.name = 'boost/filesystem/path.hpp'
    e.run()
    libconf.mandatory = 0
    libconf.uselib = 'filesystem'
    libconf.name = 'boost_filesystem'
    ret = libconf.run()
    if not ret:
    libconf.mandatory = 1
    libconf.name = 'boost_filesystem-st'
    libconf.run()

Maybe you are looking for

  • Pop-up while creating a sales order using VA01

    Hi Experts,        i need to create a pop up in transaction VA01 to input a custom field value. i have done that and it is working fine. But when we use the Sales order create BAPI to create a sales order the pop-up still appears. This is not require

  • Bridge CS4 To Defualt 32 Bit Photoshop

    In brief, how do I get Bridge to open my RAW files (CR2) using 32 bit PS CS4 instead of 64 bit. Here is what I've tried so far, to no avail: 1)Changed Windows Explorer default for CR2 files to point to the 32 bit version (program files (x86)) folder.

  • 2 x 27" LED Cinema Display and MacBook Pro 15-inch: 2.66GHz Intel Core i7

    Hi, here is my question. How can I connect these 2 displays with my MacBook Pro?

  • PDF Problems @ Printers - Export Methods?

    I am working on a brochure that is mostly white text on black, with a few full colour pictures. There are also some manufacturer's logos that I inverted to make them white on black too, all in CMYK mode in PS. Though there were still black boxes arou

  • I was hoping Safari 3.1 would fix this...

    ...but no such luck. Animated GIFs STILL play at about half their intended speed in Safari. For certain pages, this can be incredibly annoying, and this issue has been around for a long, long time. Firefox does just fine with them, so what the heck i