|
List Info
Thread: variant issue
|
|
| variant issue |
  United States |
2007-07-26 15:58:11 |
I am using Boost.Build V2 (Milestone 11) Boost.Jam 03.1.15.
I've discovered a problem when creating an specialized
variant.
I created a variant called wx_release that damps done the
optimization
level to avoid the type-puned casting issues that wxWidgets
has.
Then I discovered that using
"<variant>debug:include" no longer worked.
The work around was to create a wx_debug variant too and use
it instead
of debug.
If my wx_release variant wasn't defined, the debug variant
worked as
expected.
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
| Re: variant issue |

|
2007-07-26 18:28:20 |
Jeffrey Holle wrote:
> I am using Boost.Build V2 (Milestone 11) Boost.Jam
03.1.15.
>
> I've discovered a problem when creating an specialized
variant.
>
> I created a variant called wx_release that damps done
the optimization
> level to avoid the type-puned casting issues that
wxWidgets has.
>
> Then I discovered that using
"<variant>debug:include" no longer worked.
>
> The work around was to create a wx_debug variant too
and use it instead
> of debug.
>
> If my wx_release variant wasn't defined, the debug
variant worked as
> expected.
>
I created a <variant-base> property for this purpose
-- that way I can
say
"<variant-base>release:<define>NDEBUG"
and it'll work for both
<variant>release and <variant>profile (which is
based on release). See
the attached patch.
HTH,
Phillip
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
|
| Cross compiling Boost for ppc |

|
2007-07-27 00:13:44 |
Hello all,
I am new to linux.
I am put into a task for cross compiling boost for Power
PC.
Can anyone mention the steps I should follow for the same?
Thanks in advance,
Yegnesh
The information contained in this electronic message and any
attachments to this message are intended for the exclusive
use of the addressee(s) and may contain proprietary,
confidential or privileged information. If you are not the
intended recipient, you should not disseminate, distribute
or copy this e-mail. Please notify the sender immediately
and destroy all copies of this message and any attachments.
WARNING: Computer viruses can be transmitted via email. The
recipient should check this email and any attachments for
the presence of viruses. The company accepts no liability
for any damage caused by any virus transmitted by this
email.
www.wipro.com
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
| Re: Cross compiling Boost for ppc |

|
2007-07-27 12:50:18 |
yegnesh.subramania wipro.com wrote:
>
> Hello all,
>
> I am new to linux.
> I am put into a task for cross compiling boost for
Power PC.
> Can anyone mention the steps I should follow for the
same?
1. Read Boost's getting started document.
2. Make sure your user-config.jam has this:
using gcc : : powerpc-bla-blah-g++ ;
where 'powerpc-bla-blah-g++' is your g++
binary.
3. Build as documented in getting started.
4. Report any problems you see.
> The information contained in this electronic message
and any attachments
> to this message are intended for the exclusive use of
the addressee(s) and
> may contain proprietary, confidential or privileged
information. If you
> are not the intended recipient, you should not
disseminate, distribute or
> copy this e-mail. Please notify the sender immediately
and destroy all
> copies of this message and any attachments.
>
> WARNING: Computer viruses can be transmitted via email.
The recipient
> should check this email and any attachments for the
presence of viruses.
> The company accepts no liability for any damage caused
by any virus
> transmitted by this email.
Please arrange for your messages to have none of this legal
language.
Also, please don't ask questions by replying to unrelated
emails.
- Volodya
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
| Re: Cross compiling Boost for ppc |

|
2007-08-03 04:55:25 |
Hello list,
I tried compiling the example program using the cross
compiler
powerpc-860-linux-gnu-gcc.
I modified user-config.jam with this toolset. (using
powerpc-860-linux-gnu-gcc). Boost version I used is
boost_1_33_1.
When I ran bjam it showed the following error:-
/cygdrive/d/Project-Arcturus/CrossCompilingBoost/boost-build
/build/tools
et.jam:109: in flags from module toolset
error: Module powerpc-860-linux-gnu-gcc attempted to set
flags for
module gcc
/cygdrive/d/Project-Arcturus/CrossCompilingBoost/boost-build
/tools/power
pc-860-linux-gnu-gcc.jam:149: in load from module
powerpc-860-linux-gnu-gcc
/cygdrive/d/Project-Arcturus/CrossCompilingBoost/boost-build
/example/../
kernel/modules.jam:261: in import from module modules
/cygdrive/d/Project-Arcturus/CrossCompilingBoost/boost-build
/build/tools
et.jam:25: in using from module toolset
/cygdrive/d/Project-Arcturus/CrossCompilingBoost/boost-build
/./user-conf
ig.jam:21: in modules.load from module user-config
/cygdrive/d/Project-Arcturus/CrossCompilingBoost/boost-build
/build-syste
m.jam:125: in load from module build-system
/cygdrive/d/Project-Arcturus/CrossCompilingBoost/boost-build
/example/../
kernel/modules.jam:261: in import from module modules
/cygdrive/d/Project-Arcturus/CrossCompilingBoost/boost-build
/example/../
kernel/bootstrap.jam:132: in boost-build from module
/cygdrive/d/Project-Arcturus/CrossCompilingBoost/boost-build
/example/boo
st-build.jam:2: in module scope from module
Suggestions for correcting this would be of great help.
Thanks in advance,
Yegnesh
The information contained in this electronic message and any
attachments to this message are intended for the exclusive
use of the addressee(s) and may contain proprietary,
confidential or privileged information. If you are not the
intended recipient, you should not disseminate, distribute
or copy this e-mail. Please notify the sender immediately
and destroy all copies of this message and any attachments.
WARNING: Computer viruses can be transmitted via email. The
recipient should check this email and any attachments for
the presence of viruses. The company accepts no liability
for any damage caused by any virus transmitted by this
email.
www.wipro.com
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
| Re: Cross compiling Boost for ppc |
  Russian Federation |
2007-08-03 06:58:26 |
On Friday 03 August 2007 13:55:25 yegnesh.subramania wipro.com
wrote:
>
> Hello list,
>
> I tried compiling the example program using the cross
compiler
> powerpc-860-linux-gnu-gcc.
>
> I modified user-config.jam with this toolset. (using
> powerpc-860-linux-gnu-gcc). Boost version I used is
boost_1_33_1.
1. I have told you to use:
using gcc : : powerpc-bla-blah-g++ ;
and you seem to be using
using powerpc-860-linux-gnu-gcc ;
which is completely wrong.
2. You really should be using boost 1.34
> The information contained in this electronic message
and
> any attachments to this message are intended for the
> exclusive use of the addressee(s) and may contain
proprietary,
> confidential or privileged information. If you are not
the intended recipient,
> you should not disseminate, distribute or copy this
e-mail.
> Please notify the sender immediately and destroy all
copies of this message and any attachments.
>
> WARNING: Computer viruses can be transmitted via email.
The recipient
> should check this email and any attachments for the
presence of viruses.
> The company accepts no liability for any damage caused
by any virus transmitted by this email.
Please stop adding this blurb.
- Volodya
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build
a>
|
|
[1-6]
|
|
|
about | contact Other archives ( Real Estate discussion Medical topics )
|