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

2007-12-10 Thread Travis Vitek
Martin Sebor wrote: Travis Vitek wrote: It seems that the problem is that the Cygwin environment defines part of the C++ runtime library in the C library. It does? I don't see any such symbols in the localedef.imports file attached to STDCXX-507 (although there are a lot symbols

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

2007-12-10 Thread Farid Zaripov
-Original Message- From: Travis Vitek [mailto:[EMAIL PROTECTED] Sent: Monday, December 10, 2007 7:25 PM To: stdcxx-dev@incubator.apache.org Subject: Re: [PATCH] STDCXX-507 (or using __declspec(dllexport/dllimport on gcc/cygwin in shared builds) It seems that the problem is that

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

2007-12-10 Thread Farid Zaripov
-Original Message- From: Martin Sebor [mailto:[EMAIL PROTECTED] On Behalf Of Martin Sebor Sent: Friday, December 07, 2007 8:56 PM To: stdcxx-dev@incubator.apache.org Subject: Re: [PATCH] STDCXX-507 (or using __declspec(dllexport/dllimport on gcc/cygwin in shared builds) Farid

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

2007-12-10 Thread Martin Sebor
Farid Zaripov wrote: -Original Message- From: Travis Vitek [mailto:[EMAIL PROTECTED] Sent: Monday, December 10, 2007 7:25 PM To: stdcxx-dev@incubator.apache.org Subject: Re: [PATCH] STDCXX-507 (or using __declspec(dllexport/dllimport on gcc/cygwin in shared builds) It seems that the

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

2007-12-10 Thread Martin Sebor
Farid Zaripov wrote: -Original Message- From: Martin Sebor [mailto:[EMAIL PROTECTED] On Behalf Of Martin Sebor Sent: Friday, December 07, 2007 8:56 PM To: stdcxx-dev@incubator.apache.org Subject: Re: [PATCH] STDCXX-507 (or using __declspec(dllexport/dllimport on gcc/cygwin in shared

[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)

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

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.