Boost logo

Boost :

From: SourceForge.net (noreply_at_[hidden])
Date: 2007-04-16 10:10:33


Bugs item #1701555, was opened at 2007-04-16 16:10
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1701555&group_id=7586

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: build
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Marvin H. Sielenkemper (sielenk)
Assigned to: Nobody/Anonymous (nobody)
Summary: <native-wchar_t>off does not work when build with vc-8.0

Initial Comment:
When the boost libraries are build with the build flag '-sBUILD="<native-wchar_t>off"' the resulting binaries still use the native wchar_t type.

Reason/Fix:
In vc-8_0-tools.jam the feature is defined as follows:
--- snip ---
feature native-wchar_t : on off ;
flags vc-8_0 C++FLAGS : /Zc:forScope ;
flags vc-8_0 C++FLAGS <native-wchar_t>on : /Zc:wchar_t ;
--- snip ---

But since 'on' is the default value for the new compiler, the defined flags are redundant and the flags for 'off' are missing.

To fix, change it to
--- snip ---
feature native-wchar_t : on off ;
flags vc-8_0 C++FLAGS : /Zc:forScope ;
flags vc-8_0 C++FLAGS <native-wchar_t>off : /Zc:wchar_t- ;
--- snip ---

----------------------------------------------------------------------

You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1701555&group_id=7586

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-bugs mailing list
Boost-bugs_at_[hidden]
https://lists.sourceforge.net/lists/listinfo/boost-bugs


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk