Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - Where are the debug libraries?
Trying out a serial port demo, and I get a linker prob.: sc main.cpp -cpp -Ae -mn -C -WA -S -3 -a8 -c -gf -D_DEBUG -D_CONSOLE=1 -IG:\dm\stlport\stlport -IG:\dm\include -IG:\boost-1.30.2 -IG:\boost-1.30.2\boost -omain.obj sc ..\Serial.cpp -cpp -Ae -mn -C -WA -S -3 -a8 -c -gf -D_DEBUG -D_CONSOLE=1 -IG:\dm\stlport\stlport -IG:\dm\include -IG:\boost-1.30.2 -IG:\boost-1.30.2\boost -o..\Serial.obj link /CO /NOI /DE /NOPACKF /XN /NT /ENTRY:mainCRTStartup /BAS:4194304 /A:512 test_serial.LNK Error: G:\BACnet\RS485\test\..\Serial.OBJ(Serial) (53805068): Symbol Undefined __CrtDbgReport Lines Processed: 256728 Errors: 1 Warnings: 0 Build failed Doing a google search for __CrtDbgReport I found this: ------------------------------------------------- Routine Required Header Compatibility _CrtDbgReport <crtdbg.h> Win NT, Win 95 >> You need to link to one of the following libraries: LIBCD.LIB Single thread static library, debug version LIBCMTD.LIB Multithread static library, debug version MSVCRTD.LIB Import library for MSVCRTD.DLL, debug version ------------------------------------------------- But I can't find any of these in dm\lib, or anywhere in my puter.. Or, well, I did find msvcrtd.dll in windows\system, but then I get a linker error saying msvcrtd.LIB not found... TIA Jan 09 2004
Please, I really need help with this; 3 days gone and getting nowhere. link /CO /NOI /DE /NOPACKF /XN /NT /ENTRY:WinMainCRTStartup /BAS:4194304 /A:512 hello.LNK Error: G:\BACnet\RS485\test\Serial.OBJ(Serial) (82783638): Symbol Undefined __CrtDbgReport Errors: 1 Warnings: 0 Build failed Thanks Jan 12 2004
"dan" <dan_member pathlink.com> wrote in message news:btn7qq$1to0$1 digitaldaemon.com...Trying out a serial port demo, and I get a linker prob.: sc main.cpp -cpp -Ae -mn -C -WA -S -3 -a8 -c -gf -D_DEBUG -D_CONSOLE=1 -IG:\dm\stlport\stlport -IG:\dm\include -IG:\boost-1.30.2 -IG:\boost-1.30.2\boost -omain.obj sc Jan 14 2004
cd \dm\lib grep -i crtdbgreport *.* So, you need to link in snnd.lib or sndd.lib. Looking at your command line, try snnd.lib, which is the 'debug' build of snn.lib. Jan 14 2004
I don't have those. What should I download to get the debug libraries; or should I dig up the old ones from my SC++ 7.5 CD-ROM? Thanks, BruceSo, you need to link in snnd.lib or sndd.lib. Looking at Jan 15 2004
"Bruce Dodson" <bruce_dodson_except_this_part hotmail.com> wrote in message news:bu7p3t$1sk0$1 digitaldaemon.com...I don't have those. What should I download to get the debug libraries; or should I dig up the old ones from my SC++ 7.5 CD-ROM? Jan 17 2004
Walter wrote:"Bruce Dodson" <bruce_dodson_except_this_part hotmail.com> wrote in message news:bu7p3t$1sk0$1 digitaldaemon.com...I don't have those. What should I download to get the debug libraries; or should I dig up the old ones from my SC++ 7.5 CD-ROM? Jan 17 2004
"Scott Michel" <scottm cs.ucla.edu> wrote in message news:bud47t$1kk2$1 digitaldaemon.com...Walter wrote:"Bruce Dodson" <bruce_dodson_except_this_part hotmail.com> wrote in message news:bu7p3t$1sk0$1 digitaldaemon.com...I don't have those. What should I download to get the debug libraries; or should I dig up the old ones from my SC++ 7.5 CD-ROM? Jan 17 2004
Having used the Symantec C++ IDDE for several years, I have to agree that it is an ABSOLUTE STEAL to get those same tools (updated) for $25. But, by the same token, I already have (most of) them. /bruce Jan 18 2004
"dan" <dan_member pathlink.com> wrote in message news:btn7qq$1to0$1 digitaldaemon.com...------------------------------------------------- Routine Required Header Compatibility _CrtDbgReport <crtdbg.h> Win NT, Win 95 >> Jan 14 2004
|