Opened 16 years ago
Closed 14 years ago
#881 closed Bugs (fixed)
errors when build with Apache stdcxx
| Reported by: | farid_zaripov | Owned by: | Anthony Williams |
|---|---|---|---|
| Milestone: | Component: | threads | |
| Version: | None | Severity: | Showstopper |
| Keywords: | Cc: |
Description
I have been working on the Apache C++ Standard Library project (STDCXX):
http://incubator.apache.org/stdcxx/
I've trying to compile the boost library with stdcxx.
The details can be found here:
http://mail-archives.apache.org/mod_mbox/incubator-stdcxx-dev/200704.mbox/%
3c7BDB2168BEAEF14C98F1901FD2DE64386573EB@epmsa009.minsk.epam.com%3e
Boost version: 1.33.1
STDCXX version: 4.2
I've got the folowing errors in libs/thread/src/once.cpp and boost/thread/recursive_mutex.hpp:
D:\_Libs\boost_1_33_1\libs\thread\build\..\src\once.cpp(159) : error C2039: 'hex' : is not a member of 'std'
D:\_Libs\boost_1_33_1\libs\thread\build\..\src\once.cpp(159) : error C2065: 'hex' : undeclared identifier
CALL "D:\Program Files\Microsoft Visual Studio 8\Common7\Tools\..\..\VC\bin\vcvars32.BAT" >nul
"D:\Program Files\Microsoft Visual Studio 8\Common7\Tools\..\..\VC\bin\cl" /Zm800 -nologo /EHsc -c -DBOOST_THREAD_LIB_NAME=boost_thread -DBOOST_THREAD_BUILD_LIB=1 -D_RWSTDDEBUG /Z7 /Od /Ob0 /EHsc /GR /MTd /Zc:forScope /Zc:wchar_t -I"bin\boost\libs\thread\build" -I"D:\_Projects\stdcxx_working\include" -I"D:\_Projects\stdcxx_working\include\ansi" -I"D:\_Projects\stdcxx_working\build\msvc-8.0\15s\include" -I"D:\_Libs\boost_1_33_1" -Fo"bin\boost\libs\thread\build\libboost_thread.lib\vc-8_0-stdcxx\debug\runtime-link-static\threading-multi\once.obj" -Tp"D:\_Libs\boost_1_33_1\libs\thread\build\..\src\once.cpp"
D:\_Libs\boost_1_33_1\boost/thread/recursive_mutex.hpp(45) : error C2039: 'size_t' : is not a member of 'std'
D:\_Libs\boost_1_33_1\boost/thread/recursive_mutex.hpp(92) : error C2039: 'size_t' : is not a member of 'std'
D:\_Libs\boost_1_33_1\boost/thread/recursive_mutex.hpp(142) : error C2039: 'size_t' : is not a member of 'std'
CALL "D:\Program Files\Microsoft Visual Studio 8\Common7\Tools\..\..\VC\bin\vcvars32.BAT" >nul
"D:\Program Files\Microsoft Visual Studio 8\Common7\Tools\..\..\VC\bin\cl" /Zm800 -nologo /EHsc -c -DBOOST_THREAD_LIB_NAME=boost_thread -DBOOST_THREAD_BUILD_LIB=1 -D_RWSTDDEBUG /Z7 /Od /Ob0 /EHsc /GR /MTd /Zc:forScope /Zc:wchar_t -I"bin\boost\libs\thread\build" -I"D:\_Projects\stdcxx_working\include" -I"D:\_Projects\stdcxx_working\include\ansi" -I"D:\_Projects\stdcxx_working\build\msvc-8.0\15s\include" -I"D:\_Libs\boost_1_33_1" -Fo"bin\boost\libs\thread\build\libboost_thread.lib\vc-8_0-stdcxx\debug\runtime-link-static\threading-multi\recursive_mutex.obj" -Tp"D:\_Libs\boost_1_33_1\libs\thread\build\..\src\recursive_mutex.cpp"
I propose to #include <ios> in once.cpp to define std::hex() and #include <cstddef> in recursive_mutex.hpp to define std::size_t.
Change History (6)
comment:1 by , 15 years ago
| Owner: | changed from to |
|---|---|
| Status: | assigned → new |
comment:2 by , 15 years ago
| Status: | new → assigned |
|---|
comment:3 by , 15 years ago
comment:5 by , 15 years ago
It seems that the described errors are not reproduced in trunk, so I think that this ticket can be closed.
comment:6 by , 14 years ago
| Resolution: | None → fixed |
|---|---|
| Severity: | → Showstopper |
| Status: | assigned → closed |
V 1.35.0 and later of boost.thread does not suffer from this problem
Note:
See TracTickets
for help on using tickets.

The cross-reference link to the Apache STDCXX issue tracker: http://issues.apache.org/jira/browse/STDCXX-430