Search found 8 matches

by dziises
Tue Oct 04, 2005 7:04 am
Forum: Compiler / Linking / IDE Related
Topic: Wanted: Dummy's guide to CodeBlocks /MS Free Tools 2003 / WX
Replies: 7
Views: 2339

Perhaps someone who has a system like the one I describe, except working, could post their project template file within code tags? Well i 'work' with CB, ms toolkit and wxwidgets ;) <?xml version="1.0"?> <!DOCTYPE Code::Blocks_project_file> <Code::Blocks_project_file> <FileVersion major=&...
by dziises
Wed Sep 14, 2005 6:11 pm
Forum: Compiler / Linking / IDE Related
Topic: compiling wxwidgets with ms toolkit 2003
Replies: 15
Views: 3614

I managed to build wxwidgets. msvcrt[d].libs from IA64 or AMD64 won't work, had to install .NET SDK. odbc32.lib gets installed when i choose "Microsoft data access components" while installing SDK. I also had to download cvtres.exe and put it into C:\Program Files\Microsoft Visual C++ Tool...
by dziises
Wed Sep 14, 2005 2:33 pm
Forum: Compiler / Linking / IDE Related
Topic: compiling wxwidgets with ms toolkit 2003
Replies: 15
Views: 3614

While i am downloading net sdk, i've reinstalled 2003 sp1 sdk...installed hole package(nearly 950mb). Now i have odbc32.lib in C:\Program Files\Microsoft Platform SDK\Lib but i don't have msvcrt[d].lib in there. Instead i have msvcrt[d].lib in C:\Program Files\Microsoft Platform SDK\Lib\AMD64 and C:...
by dziises
Wed Sep 14, 2005 1:00 pm
Forum: Compiler / Linking / IDE Related
Topic: compiling wxwidgets with ms toolkit 2003
Replies: 15
Views: 3614

chris wrote:Yeah, msvcrt[d].lib is found in the .Net Framework:
Are you sure? Because i had net sdk intalled also, but if i recall correctly there were no msvcrt.lib or msvcrtd.lib there.

-e
Is there such web page where i can find what libs are included with various SDKs(XPSP2, 2003 sp1, net sdk)
by dziises
Wed Sep 14, 2005 10:38 am
Forum: Compiler / Linking / IDE Related
Topic: compiling wxwidgets with ms toolkit 2003
Replies: 15
Views: 3614

Now i get

Code: Select all

LINK : fatal error LNK1104: cannot open file 'MSVCRT.LIB'
NMAKE  : fatal error U1077: 'C:\WINDOWS\system32\cmd.exe' : return code '0x450'
Stop
by dziises
Wed Sep 14, 2005 9:19 am
Forum: Compiler / Linking / IDE Related
Topic: compiling wxwidgets with ms toolkit 2003
Replies: 15
Views: 3614

What version of the Platform SDK did you install? I have the XPSP2 version, and it includes odbc32.lib. BTW, I managed to get a link to that version: http://www.microsoft.com/msdownload/platformsdk/sdkupdate/XPSP2FULLInstall.htm . Grab it while it's still on the MS servers :wink: I've installed the...
by dziises
Wed Sep 14, 2005 8:37 am
Forum: Compiler / Linking / IDE Related
Topic: compiling wxwidgets with ms toolkit 2003
Replies: 15
Views: 3614

The vc toolkit 2003 contains only a minimal set of import libraries (.lib) and headers. You might also need to download the so-called "Platform SDK" for Windows whichs contains - among others - odbc32.lib. Sorry i forgot to mention that i have platform SDK installed, but it does not inclu...
by dziises
Wed Sep 14, 2005 7:28 am
Forum: Compiler / Linking / IDE Related
Topic: compiling wxwidgets with ms toolkit 2003
Replies: 15
Views: 3614

compiling wxwidgets with ms toolkit 2003

I 've extracted wxMSW-2.6.1.zip and wxWidgets-2.6.1-Patch01.zip to C:\Dev\wxWidgets-2.6.1, commented out shlwapi.h (app.cpp) line 93( i don't have that header), navigated to C:\Dev\wxWidgets-2.6.1\build\msw and typed nmake -f makefile.vc BUILD=release SHARED=1 MONOLITHIC=1 USE_XRC=1 UNICODE=0 Everyt...