[jira] Commented: (STDCXX-240) #define _RWSTD_NO_EXCEPTIONS when exceptions are disabled via command line option

2007-12-07 Thread Martin Sebor (JIRA)
[ https://issues.apache.org/jira/browse/STDCXX-240?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12549459 ] Martin Sebor commented on STDCXX-240: - I understand that what's at issue here is changing the library headers by

[PATCH] STDCXX-507 (or using __declspec(dllexport/dllimport on gcc/cygwin in shared builds)

2007-12-07 Thread Farid Zaripov
Today I've verified the patch for STDCXX-507 on gcc 4.2.0 and gcc 3.4.4. The patch is here: https://issues.apache.org/jira/secure/attachment/12371246/cygwin.patch ChangeLog: STDCXX-507 * include/rw/_defs.h [__CYGWIN__ _RWSHARED]: #define _RWSTD_EXPORT macro using __declspec (dllexport)

[jira] Updated: (STDCXX-507) [Cygwin] Access violation while loading libstdxxx.dll in dynamic builds

2007-12-07 Thread Farid Zaripov (JIRA)
[ https://issues.apache.org/jira/browse/STDCXX-507?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Farid Zaripov updated STDCXX-507: - Attachment: cygwin.patch The patch is attached. [Cygwin] Access violation while loading

[jira] Updated: (STDCXX-507) [Cygwin] Access violation while loading libstdxxx.dll in dynamic builds

2007-12-07 Thread Farid Zaripov (JIRA)
[ https://issues.apache.org/jira/browse/STDCXX-507?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Farid Zaripov updated STDCXX-507: - Attachment: (was: cygwin.patch) [Cygwin] Access violation while loading libstdxxx.dll in

[jira] Updated: (STDCXX-507) [Cygwin] Access violation while loading libstdxxx.dll in dynamic builds

2007-12-07 Thread Farid Zaripov (JIRA)
[ https://issues.apache.org/jira/browse/STDCXX-507?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Farid Zaripov updated STDCXX-507: - Patch Info: [Patch Available] [Cygwin] Access violation while loading libstdxxx.dll in dynamic

[jira] Commented: (STDCXX-507) [Cygwin] Access violation while loading libstdxxx.dll in dynamic builds

2007-12-07 Thread Farid Zaripov (JIRA)
[ https://issues.apache.org/jira/browse/STDCXX-507?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12549499 ] Farid Zaripov commented on STDCXX-507: -- After the patch the examples and tests are built successfully. But

[jira] Updated: (STDCXX-242) std::istream::get(unsigned char) missing

2007-12-07 Thread Martin Sebor (JIRA)
[ https://issues.apache.org/jira/browse/STDCXX-242?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Sebor updated STDCXX-242: Affects Version/s: 4.2.0 Fix Version/s: (was: 4.2.1) 4.3

[jira] Commented: (STDCXX-605) [IBM XLC++] errors compiling dynatype.cpp

2007-12-07 Thread Martin Sebor (JIRA)
[ https://issues.apache.org/jira/browse/STDCXX-605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12549587 ] Martin Sebor commented on STDCXX-605: - I think this should work. One question though: do we need to cast to

Re: [PATCH] STDCXX-507 (or using __declspec(dllexport/dllimport on gcc/cygwin in shared builds)

2007-12-07 Thread Martin Sebor
Travis Vitek wrote: Martin Sebor wrote: Farid Zaripov wrote: Today I've verified the patch for STDCXX-507 on gcc 4.2.0 and gcc 3.4.4. I get really nervous whenever we start to mess around with the runtime symbols, especially when changing which ones are exported on Windows and which ones

[jira] Commented: (STDCXX-605) [IBM XLC++] errors compiling dynatype.cpp

2007-12-07 Thread Travis Vitek (JIRA)
[ https://issues.apache.org/jira/browse/STDCXX-605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12549606 ] Travis Vitek commented on STDCXX-605: - 1. The original code casted to values. We can't cast to values, unless

[jira] Issue Comment Edited: (STDCXX-605) [IBM XLC++] errors compiling dynatype.cpp

2007-12-07 Thread Travis Vitek (JIRA)
[ https://issues.apache.org/jira/browse/STDCXX-605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12549576 ] vitek edited comment on STDCXX-605 at 12/7/07 2:23 PM: -- New and improved. Hopefully

[jira] Updated: (STDCXX-605) [IBM XLC++] errors compiling dynatype.cpp

2007-12-07 Thread Travis Vitek (JIRA)
[ https://issues.apache.org/jira/browse/STDCXX-605?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Travis Vitek updated STDCXX-605: Attachment: (was: stdcxx-605.patch) [IBM XLC++] errors compiling dynatype.cpp

[jira] Commented: (STDCXX-605) [IBM XLC++] errors compiling dynatype.cpp

2007-12-07 Thread Martin Sebor (JIRA)
[ https://issues.apache.org/jira/browse/STDCXX-605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12549616 ] Martin Sebor commented on STDCXX-605: - I assume (1) is because of the compiler bug? For (2) yes, if we can't

Re: [PATCH] STDCXX-507 (or using __declspec(dllexport/dllimport on gcc/cygwin in shared builds)

2007-12-07 Thread Travis Vitek
Martin Sebor wrote: Farid Zaripov wrote: Today I've verified the patch for STDCXX-507 on gcc 4.2.0 and gcc 3.4.4. I get really nervous whenever we start to mess around with the runtime symbols, especially when changing which ones are exported on Windows and which ones aren't.