[Monetdb-developers] suggestions on debugging/tracing

2008-03-02 Thread mobigital-nbl
Hi, I am trying to investigate this bug (https://sourceforge.net/tracker/?func=detail&atid=482468&aid=1905467&group_id=56967) which i submitted earlier. I was importing records with COPY TO a staging table in batches of 250K rows. Then copying them into final table. After completing 4,750,000 r

Re: [Monetdb-developers] load runtime incorrectly

2008-02-27 Thread mobigital-nbl
FYI, this issue turned out to be due to the linking to non-debug MSVCR90.lib in: 1. iconv project. - had to make sure that MDFlags in iconv makefile also changed to /MDd when debug was requested. 2. pthreads - changed /MD to /MDd in flags to each .c compilation to .obj, also added /MDd in final

Re: [Monetdb-developers] load runtime incorrectly

2008-02-26 Thread mobigital-nbl
additional info: it seems even after DEBUG build, my executable is looking for non-DEBUG version of MSVCR90.dll --- mserver5.exe - Unable To Locate Component --- This application has failed to start because MSVCR90.dll was not found. Re-installing

[Monetdb-developers] load runtime incorrectly

2008-02-26 Thread mobigital-nbl
Does anyone know why i may be getting this error: Runtime Error! Program: C:\monetdb\build\bin\mserver5.exe R6034 An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team for more information. --- also is there a 'clea

Re: [Monetdb-developers] iconv.dll DEBUG version

2008-02-26 Thread mobigital-nbl
you're right the iconvd.lib and iconvd.dll were actually created, i just didn't see them. many thanks > >> Edit lib/Makefile.msvc and change -Feiconv.dll to -Feiconvd.dll, and > >> compile using > >> > >> nmake -f Makefile.msvc NO_NLS=1 DLL=1 MFLAGS=-MDd DEBUG=1 > >> PREFIX=C:\iconv-1.11.win6

Re: [Monetdb-developers] pathfinder __func___ not declared

2008-02-26 Thread mobigital-nbl
Is there a free version of intel compiler that will work? it looked to me that Intel compiler must be purchased? Stefan Manegold wrote: > Pathfinder requires C99 features that are not supported by the Microsoft > Visual C/C++ compiler; hence, on Windows, Pathfinder can only with the Intel > C/C

Re: [Monetdb-developers] iconv.dll DEBUG version

2008-02-26 Thread mobigital-nbl
it ran for a while, but couldn't make iconv.lib, do I need to change that target to iconvd.lib somewhere in the makefile as well? NMAKE : fatal error U1073: don't know how to make '../lib/iconv.lib' Stop. NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 9.0\ VC\BIN\am

[Monetdb-developers] pathfinder __func___ not declared

2008-02-25 Thread mobigital-nbl
does anyone know what may be the issue causing this compilation error: this is when buildng "pathfinder" on win64. other components have built successfully - buildtoold, MonetDB, clients, MonetDB4, MonetDB5, sql. C:\monetdb\pathfinder\NT>nmake /nologo BITS64=1 NEED_MX=1 DEBUG=1 HAVE_ICONV=1 HA

[Monetdb-developers] iconv.dll DEBUG version

2008-02-25 Thread mobigital-nbl
can someone advise how to build the iconvd.dll (debug version) of iconv. on windows 64 bit platform. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/M

Re: [Monetdb-developers] libxml2 LINK error on win64.

2008-02-25 Thread mobigital-nbl
Sjoerd Mullender wrote: > The functions the linker complains about are freeaddrinfo and > getaddrinfo. These functions are only used in sections inside #ifdef > SUPPORT_IP6/#endif. So it seems you have the symbol SUPPORT_IP6 defined > somewhere. You need to find out where that is defined. M

Re: [Monetdb-developers] libxml2 LINK error on win64.

2008-02-25 Thread mobigital-nbl
i found this reference to libxml2 issue: http://osdir.com/ml/lang.perl.xml/2004-03/msg00082.html it suggested to put undefs in the specific source files nanohttp.c and nanoftp.c i added to nanohttp.c: #undef SUPPORT_IP6 #undef HAVE_GETADDRINFO to nanoftp.c: #undef SUPPORT_IP6 after that it c