[Cegcc-devel] Fwd: on cpp progs

2007-06-10 Thread James Takac
VM page: Cannot allocate memory Any ideas on this? James -- Forwarded Message -- Subject: on cpp progs Date: Sunday 10 June 2007 From: James Takac <[EMAIL PROTECTED]> To: cegcc-devel@lists.sourceforge.net Hi Guys Just need a lil help getting the basics of cpp

[Cegcc-devel] on cpp progs

2007-06-09 Thread James Takac
Hi Guys Just need a lil help getting the basics of cpp working with cegcc or mingw32ce. If I try and compile a standard cpp prog such as #include using namespace std; int main(void) { cout << "test" << endl; } then I try compiling like arm-wince-cegcc-gcc -o test.exe test.cpp I get the fol

[Cegcc-devel] re cegcc from archive files

2007-05-28 Thread James Takac
Quick note here. Got it up and running. Am curious about the 2nd package, i.e. the mingw one. Same thing but mingw version I take it? James - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE ve

[Cegcc-devel] cegcc from archive files

2007-05-28 Thread James Takac
Hi guys, I tried the rpm of the latest version on my system (ubuntu 7.04) but that wont go thru :( So I thought I'd try the archive files. As the binaries appear to be in each, is it a matter of extracting them to the required directories? James cegcc newbie ---

[Cegcc-devel] missing windows.h

2007-05-27 Thread James Takac
Hi guys Just tried the following on my linux laptop dialog.c is #include int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow) { MessageBoxW(0, L"HELLO!", L"H3LLO!", 0); } I compiled with arm-wince-pe-gcc -o dialog.exe dialog.c as per example.