Boost logo

Boost Users :

From: Boris Gubenko (Boris.Gubenko_at_[hidden])
Date: 2007-01-23 07:27:54


Prashant Thakre wrote:
> 2.HP-UX 11.23 - aCC A.06.02 - Itanium.
> How do I pass "+DD64" option to the compiler and the linker for 64-bit
> build.

You can modify tools/build/v1/acc-tools.jam to add +DD64 to CXX command
line in aCC-Link-action, acc-Cc-action and aCC-C++-action. Or you can extend
acc toolset by creating a file, say, 64bit_acc-tools.jam:

{
    extends-toolset acc ;
    flags 64bit_acc C++FLAGS : +DD64 ;
    flags 64bit_acc LINKFLAGS : +DD64 ;
}

and invoking bjam with -sTOOLS=64bit_acc

I did not try it, but a similar technique used to work in 1.33 build.

> aCC A.06.02

I strongly recommend to upgrade to a more recent aCC6 compiler.

Boris

----- Original Message -----
From: "Prashant Thakre" <prashant.thakre_at_[hidden]>
To: <boost-users_at_[hidden]>
Sent: Tuesday, January 23, 2007 12:51 AM
Subject: [Boost-users] [Boost 1.33.1].[64-bit]

> Hi,
> I am trying to get 64-bit build of Boost 1.33.1 on following platforms:
> 1.Solaris 10 - Sun Studio 11 - Sparc.
> URL's listed below helped me to build some if not all.
> Patch -- http://blogs.sun.com/sga/entry/boost_1_33_1
> Instruction for passing the relevant options to bjam --
> http://blogs.sun.com/sga/category/Boost
> 2.HP-UX 11.23 - aCC A.06.02 - Itanium.
> How do I pass "+DD64" option to the compiler and the linker for 64-bit
> build.
> 3.AIX 5.3 - xlC/C++ 8.0 - PowerPC.
> Correct way to pass "-q64" option to the compiler and the linker.
> I do not really want to use the environment variable OBJECT_MODE.
>
> --
> regards,
> Prashant Thakre
>
>
> _______________________________________________
> Boost-users mailing list
> Boost-users_at_[hidden]
> http://lists.boost.org/mailman/listinfo.cgi/boost-users
>
>


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net