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
--- 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
>
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.
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
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
> 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
Rino Farina
>> Sent: Monday, January 19, 2009 3:46 PM
>> To: wine-devel@winehq.org
>> Subject: wineg++ compile error
>>
>> Hi All,
>>
>> I'm completely new to wine, and am having trouble compiling code
>> before it ever gets to the linker. Can a
f Of Rino Farina
> Sent: Monday, January 19, 2009 3:46 PM
> To: wine-devel@winehq.org
> Subject: wineg++ compile error
>
> Hi All,
>
> I'm completely new to wine, and am having trouble compiling code
> before it ever gets to the linker. Can anyone point me in the ri
Hi All,
I'm completely new to wine, and am having trouble compiling code
before it ever gets to the linker. Can anyone point me in the right
direction?
BaseGameEntity.h:
#include
class BaseGameEntity
{
private:
int m_ID;
static int m_iNextValidID;
void SetID(int val);
public: