| Anonymous | Login | Signup for a new account | 11-10-2008 10:40 PST |
| Main | My View | View Issues | Change Log | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | ||||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||||
| 0000098 | [uClibc++] Other | minor | always | 02-11-05 13:39 | 08-02-05 20:14 | ||||
| Reporter | thritter | View Status | public | ||||||
| Assigned To | gkajmowi | ||||||||
| Priority | normal | Resolution | fixed | ||||||
| Status | closed | Product Version | 0.1.9 | ||||||
| Summary | 0000098: cstdlib does not compile with WCHAR disabled | ||||||||
| Description |
Problem results in messages like this: In file included from include/stdinc.h:73, from ./src/xxxx.cpp:34: .../include/cstdlib:38: error: `::mblen' has not been declared .../include/cstdlib:39: error: `::mbstowcs' has not been declared .../include/cstdlib:40: error: `::mbtowc' has not been declared .../include/cstdlib:48: error: `::wctomb' has not been declared .../include/cstdlib:49: error: `::wcstombs' has not been declared |
||||||||
| Additional Information |
Fix by change cstdlib: .... namespace std{ using ::abort; using ::abs; using ::atexit; using ::atol; using ::atof; using ::atoi; using ::bsearch; using ::div; using ::exit; using ::getenv; using ::labs; using ::ldiv; using ::srand; using ::strtod; using ::strtol; using ::strtoul; using ::system; using ::qsort; using ::rand; #ifdef __UCLIBCXX_HAS_WCHAR__ using ::mblen; using ::mbstowcs; using ::mbtowc; using ::wctomb; using ::wcstombs; #endif ..... |
||||||||
| Attached Files | |||||||||
|
|
|||||||||
| Copyright © 2000 - 2006 Mantis Group |