You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@stdcxx.apache.org by "Martin Sebor (JIRA)" <ji...@apache.org> on 2008/05/02 23:36:55 UTC

[jira] Closed: (STDCXX-873) [EDG eccp 3.9/SuSE 9] wcslen() not declared in

     [ https://issues.apache.org/jira/browse/STDCXX-873?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Sebor closed STDCXX-873.
-------------------------------


The problem specifically noted in the Summary of the issue was fixed in 4.2.1 but the related problem described in STDCXX-903 was never merged out and will need to be addressed in 4.2.2.

> [EDG eccp 3.9/SuSE 9] wcslen() not declared in <wchar.h>
> --------------------------------------------------------
>
>                 Key: STDCXX-873
>                 URL: https://issues.apache.org/jira/browse/STDCXX-873
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: 21. Strings
>    Affects Versions: 4.2.0
>         Environment: Edison Design Group C/C++ Front End, version 3.9 (Mar 24 2007 16:01:33)
> SUSE LINUX Enterprise Server 9 (x86_64)
>            Reporter: Martin Sebor
>            Assignee: Martin Sebor
>             Fix For: 4.2.1
>
>   Original Estimate: 1h
>          Time Spent: 1h
>  Remaining Estimate: 0h
>
> The C++ '98 function {{wcslen()}} required to be declared in {{<wchar.h>}} and {{<cwchar>}} is not declared in our version of the former header when compiling with EDG eccp on SuSE Linux 9. The function is declared in {{<cwchar>}} as expected.
> {noformat}
> $ cat t.cpp && make t
> #include <wchar.h>
> int main ()
> {
>     return wcslen (L"");
> }
> generating dependencies for t.cpp
> eccp -M -I$TOPDIR/include/ansi -D_RWSTDDEBUG    -I$TOPDIR/include -I/build/sebor/stdcxx-eccp-3.9-11s/include -I$TOPDIR/examples/include  -A -x --template_directory=/build/sebor/stdcxx-eccp-3.9-11s/lib -g   --display_error_number --remarks --diag_suppress 193,236,340,401,261,479,487,678,679,815  t.cpp
> eccp -c -I$TOPDIR/include/ansi -D_RWSTDDEBUG    -I$TOPDIR/include -I/build/sebor/stdcxx-eccp-3.9-11s/include -I$TOPDIR/examples/include  -A -x --template_directory=/build/sebor/stdcxx-eccp-3.9-11s/lib -g   --display_error_number --remarks --diag_suppress 193,236,340,401,261,479,487,678,679,815   t.cpp
> "t.cpp", line 5: error #20: identifier "wcslen" is undefined
>       return wcslen (L"");
>              ^
> 1 error detected in the compilation of "t.cpp".
> make: *** [t.o] Error 2
> {noformat}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.