You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by "Rob Godfrey (JIRA)" <qp...@incubator.apache.org> on 2008/05/02 16:04:56 UTC

[jira] Updated: (QPID-980) Amend Qpid/C++ INSTALL file to show how to build/install Boost to work with the current build system

     [ https://issues.apache.org/jira/browse/QPID-980?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rob Godfrey updated QPID-980:
-----------------------------

          Component/s: C++ Broker
        Fix Version/s: M3
    Affects Version/s:     (was: M2)
                       M3

> Amend Qpid/C++ INSTALL file to show how to build/install Boost to work with the current build system
> ----------------------------------------------------------------------------------------------------
>
>                 Key: QPID-980
>                 URL: https://issues.apache.org/jira/browse/QPID-980
>             Project: Qpid
>          Issue Type: Bug
>          Components: C++ Broker
>    Affects Versions: M3
>            Reporter: Danushka Menikkumbura
>            Assignee: Gordon Sim
>             Fix For: M3
>
>         Attachments: QPID-980.patch
>
>
> I found this issue when I was trying to build Boost from the source distribution.
>    According to Qpid/C++ documentation (refer to INSTALL file) the following command is supposed to build Boost libraries.
>    bjam -sTOOLS=gcc --prefix=~/qpid-tools
>    The generated libraries with this command have the name format <prefix><library name>-<tooset name>-<threading tag>-<ABI tag><version tag><extension>.
> .
>    E.g. libboost_program_options-gcc41-mt-1_34_1.so
>    In Qpid build system, the Boost libs that are linked have the name format <prefix><library name><extension>.
>    The remedy for this issue is twofold.
>    1. Use the following command instead of what is given in the INSTALL file.
>    bjam -sTOOLS=gcc --layout=system --build-type=complete --prefix=~/qpid-tools
>    This generates all possible variants of libs and hence what we want, takes longer time to build the libs though.
>    2. Make use of package management tools to install Boost libs.
>    On Ubuntu, use the following command.
>    sudo apt-get install libboost*-dev 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.