Re: wineg++ compile error

2009-01-23 Thread Rino Farina
Yep. I switched to mingw as cross-compiler, and all is right with the world again ;) Thanks everyone! -rino On Tue, Jan 20, 2009 at 11:07 AM, Hin-Tak Leung wrote: > --- On Tue, 20/1/09, Rino Farina wrote: > >> Right, I wasn't able to find iostream among the >> available headers >> (remember, I

Re: wineg++ compile error

2009-01-20 Thread Hin-Tak Leung
--- On Tue, 20/1/09, Rino Farina wrote: > Right, I wasn't able to find iostream among the > available headers > (remember, I'm not linking yet). > > Stefan, are you suggesting that I install microsofts > tool-chain and > compile the code with the ms compiler? Sounds reasonable. > I'm not sure >

Re: wineg++ compile error

2009-01-20 Thread Ben Klein
2009/1/21 Rino Farina : > I'm not sure what you mean by PE .exe, though PE is Microsoft's standard executable format for Windows programs, in contrast to ELF, which is the standard Linux executable format.

Re: wineg++ compile error

2009-01-20 Thread Rino Farina
Right, I wasn't able to find iostream among the available headers (remember, I'm not linking yet). Stefan, are you suggesting that I install microsofts tool-chain and compile the code with the ms compiler? Sounds reasonable. I'm not sure what you mean by PE .exe, though. I have no need to link to

Re: wineg++ compile error

2009-01-19 Thread Damjan Jovanovic
On Tue, Jan 20, 2009 at 2:23 AM, Stefan Dösinger wrote: >> Yeah, it looks like there's some conflict with iostream and msvcrt: >> http://www.mail-archive.com/wine-devel@winehq.org/msg08834.html >> >> I'm trying to follow the recommendations, but without much luck. > Maybe try to use the iostream i

RE: wineg++ compile error

2009-01-19 Thread Stefan Dösinger
> Yeah, it looks like there's some conflict with iostream and msvcrt: > http://www.mail-archive.com/wine-devel@winehq.org/msg08834.html > > I'm trying to follow the recommendations, but without much luck. Maybe try to use the iostream implementation from msvcrt(not sure how to do that, though - I

Re: wineg++ compile error

2009-01-19 Thread Rino Farina
Yeah, it looks like there's some conflict with iostream and msvcrt: http://www.mail-archive.com/wine-devel@winehq.org/msg08834.html I'm trying to follow the recommendations, but without much luck. On Mon, Jan 19, 2009 at 11:42 AM, Stefan Dösinger wrote: > It looks like you include two headers th

RE: wineg++ compile error

2009-01-19 Thread Stefan Dösinger
It looks like you include two headers that define the same type in a differnet way. Ie, a typdef from a Linux header collides with a windows typedef from a Wine header. > -Original Message- > From: wine-devel-boun...@winehq.org [mailto:wine-devel- > boun...@winehq.org] On Behalf Of Rino Fa