[Monetdb-developers] pathfinder __func___ not declared
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 HAVE_MONETDB4=1 HAVE_MONETDB5=1 HAVE_PYTHON=1 "prefix=c:\monetdb\build" "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\amd64\nmake.exe" /nologo /f ".\..\Makefile.msc" "prefix=c:\monetdb\build" "bits=64" all if not exist "conf" mkdir "conf" copy ".\..\conf\Makefile.msc" "conf\Makefile" 1 file(s) copied. cd "conf" && "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\amd64\nmake.exe" /nologo DEBUG=1 "prefix=c:\monetdb\build" "bits=64" all if not exist "compiler" mkdir "compiler" copy ".\..\compiler\Makefile.msc" "compiler\Makefile" 1 file(s) copied. cd "compiler" && "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\amd64\nmake.exe" /nologo DEBUG=1 "prefix=c:\monetdb\build" "bits=64" all if not exist "utils" mkdir "utils" copy ".\..\..\compiler\utils\Makefile.msc" "utils\Makefile" 1 file(s) copied. cd "utils" && "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\amd64\nmake.exe" /nologo DEBUG=1 "prefix=c:\monetdb\build" "bits=64" all if not exist "schema" mkdir "schema" copy ".\..\..\compiler\schema\Makefile.msc" "schema\Makefile" 1 file(s) copied. cd "schema" && "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\amd64\nmake.exe" /nologo DEBUG=1 "prefix=c:\monetdb\build" "bits=64" all cl -GF -W3 -wd4273 -wd4102 -MDd -nologo -Zi -Od -D_DEBUG -RTC1 -ZI -I. -I.\..\.. "-IC:\Pthreads\include" -I.\..\..\..\compiler\schema "-I..\include" -I.\..\..\..\compiler\schema\..\include "-Ic:\monetdb\build\include\MonetDB" "-Ic:\monetdb\build\include\MonetDB\common" "-Ic:\monetdb\build\include\MonetDB\gdk" -Wp64 -DMILPRINT_SUMMER_IS_DEFAULT=1 -DALGEBRA_IS_DEFAULT=0 -DSQL_IS_DEFAULT=0 -DHAVE_LIBXML2 "-IC:\libxml2-2.6.30.win64\include" "-IC:\zlib-1.2.3.win64\include" "-IC:\iconv-1.11.win64\include" -DLIBSCHEMA -DCOMPILE_DL_SCHEMA -Fo"import.obj" -c ".\..\..\..\compiler\schema\import.c" cl : Command line warning D9038 : /ZI is not supported on this platform; enabling /Zi instead cl : Command line warning D9025 : overriding '/Zi' with '/ZI' cl : Command line warning D9035 : option 'Wp64' has been deprecated and will be removed in a future release import.c .\..\..\..\compiler\schema\import.c(392) : error C2065: '__func__' : undeclared identifier .\..\..\..\compiler\schema\import.c(392) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int' .\..\..\..\compiler\schema\import.c(392) : warning C4024: 'PFmalloc_' : different types for formal and actual parameter 3 .\..\..\..\compiler\schema\import.c(397) : error C2059: syntax error : '{' .\..\..\..\compiler\schema\import.c(468) : error C2065: '__func__' : undeclared identifier .\..\..\..\compiler\schema\import.c(468) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int' .\..\..\..\compiler\schema\import.c(468) : warning C4024: 'PFoops_' : different types for formal and actual parameter 3 .\..\..\..\compiler\schema\import.c(518) : error C2065: '__func__' : undeclared identifier .\..\..\..\compiler\schema\import.c(518) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int' .\..\..\..\compiler\schema\import.c(518) : warning C4024: 'PFoops_' : different types for formal and actual parameter 3 .\..\..\..\compiler\schema\import.c(525) : error C2065: '__func__' : undeclared identifier .\..\..\..\compiler\schema\import.c(525) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int' .\..\..\..\compiler\schema\import.c(525) : warning C4024: 'PFoops_' : different types for formal and actual parameter 3 .\..\..\..\compiler\schema\import.c(535) : warning C4244: 'return' : conversion from '__int64' to 'int', possible loss of data .\..\..\..\compiler\schema\import.c(607) : error C2065: '__func__' : undeclared identifier .\..\..\..\compiler\schema\import.c(607) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int' .\..\..\..\compiler\schema\import.c(607) : warning C4024: 'PFoops_' : different types for formal and actual parameter 3 .\..\..\..\compiler\schema\import.c(663) : error C2065: '__func__' : undeclared identifier .\..\..\..\compiler\schema\import.c(663) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int' .\..\..\..\compiler\schema\import.c(663) : warning C4024: 'PFoops_' : different types for formal and actual parameter 3 .\..\..\..\compiler\schema\import.c(674) : error C2065: '__func__' : undeclared identifier
Hi, 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++ compiler. See http://monetdb.cwi.nl/projects/monetdb//MonetDB/Documentation/Windows-Instal... for details. Stefan On Mon, Feb 25, 2008 at 09:07:43PM -0800, mobigital-nbl@yahoo.com wrote:
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 HAVE_MONETDB4=1 HAVE_MONETDB5=1 HAVE_PYTHON=1 "prefix=c:\monetdb\build" "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\amd64\nmake.exe" /nologo /f ".\..\Makefile.msc" "prefix=c:\monetdb\build" "bits=64" all if not exist "conf" mkdir "conf" copy ".\..\conf\Makefile.msc" "conf\Makefile" 1 file(s) copied. cd "conf" && "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\amd64\nmake.exe" /nologo DEBUG=1 "prefix=c:\monetdb\build" "bits=64" all if not exist "compiler" mkdir "compiler" copy ".\..\compiler\Makefile.msc" "compiler\Makefile" 1 file(s) copied. cd "compiler" && "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\amd64\nmake.exe" /nologo DEBUG=1 "prefix=c:\monetdb\build" "bits=64" all if not exist "utils" mkdir "utils" copy ".\..\..\compiler\utils\Makefile.msc" "utils\Makefile" 1 file(s) copied. cd "utils" && "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\amd64\nmake.exe" /nologo DEBUG=1 "prefix=c:\monetdb\build" "bits=64" all if not exist "schema" mkdir "schema" copy ".\..\..\compiler\schema\Makefile.msc" "schema\Makefile" 1 file(s) copied. cd "schema" && "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\amd64\nmake.exe" /nologo DEBUG=1 "prefix=c:\monetdb\build" "bits=64" all cl -GF -W3 -wd4273 -wd4102 -MDd -nologo -Zi -Od -D_DEBUG -RTC1 -ZI -I. -I.\..\.. "-IC:\Pthreads\include" -I.\..\..\..\compiler\schema "-I..\include" -I.\..\..\..\compiler\schema\..\include "-Ic:\monetdb\build\include\MonetDB" "-Ic:\monetdb\build\include\MonetDB\common" "-Ic:\monetdb\build\include\MonetDB\gdk" -Wp64 -DMILPRINT_SUMMER_IS_DEFAULT=1 -DALGEBRA_IS_DEFAULT=0 -DSQL_IS_DEFAULT=0 -DHAVE_LIBXML2 "-IC:\libxml2-2.6.30.win64\include" "-IC:\zlib-1.2.3.win64\include" "-IC:\iconv-1.11.win64\include" -DLIBSCHEMA -DCOMPILE_DL_SCHEMA -Fo"import.obj" -c ".\..\..\..\compiler\schema\import.c" cl : Command line warning D9038 : /ZI is not supported on this platform; enabling /Zi instead cl : Command line warning D9025 : overriding '/Zi' with '/ZI' cl : Command line warning D9035 : option 'Wp64' has been deprecated and will be removed in a future release import.c .\..\..\..\compiler\schema\import.c(392) : error C2065: '__func__' : undeclared identifier .\..\..\..\compiler\schema\import.c(392) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int' .\..\..\..\compiler\schema\import.c(392) : warning C4024: 'PFmalloc_' : different types for formal and actual parameter 3 .\..\..\..\compiler\schema\import.c(397) : error C2059: syntax error : '{' .\..\..\..\compiler\schema\import.c(468) : error C2065: '__func__' : undeclared identifier .\..\..\..\compiler\schema\import.c(468) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int' .\..\..\..\compiler\schema\import.c(468) : warning C4024: 'PFoops_' : different types for formal and actual parameter 3 .\..\..\..\compiler\schema\import.c(518) : error C2065: '__func__' : undeclared identifier .\..\..\..\compiler\schema\import.c(518) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int' .\..\..\..\compiler\schema\import.c(518) : warning C4024: 'PFoops_' : different types for formal and actual parameter 3 .\..\..\..\compiler\schema\import.c(525) : error C2065: '__func__' : undeclared identifier .\..\..\..\compiler\schema\import.c(525) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int' .\..\..\..\compiler\schema\import.c(525) : warning C4024: 'PFoops_' : different types for formal and actual parameter 3 .\..\..\..\compiler\schema\import.c(535) : warning C4244: 'return' : conversion from '__int64' to 'int', possible loss of data .\..\..\..\compiler\schema\import.c(607) : error C2065: '__func__' : undeclared identifier .\..\..\..\compiler\schema\import.c(607) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int' .\..\..\..\compiler\schema\import.c(607) : warning C4024: 'PFoops_' : different types for formal and actual parameter 3 .\..\..\..\compiler\schema\import.c(663) : error C2065: '__func__' : undeclared identifier .\..\..\..\compiler\schema\import.c(663) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int' .\..\..\..\compiler\schema\import.c(663) : warning C4024: 'PFoops_' : different types for formal and actual parameter 3 .\..\..\..\compiler\schema\import.c(674) : error C2065: '__func__' : undeclared identifier
------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Monetdb-developers mailing list Monetdb-developers@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-developers
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |
participants (2)
-
mobigital-nbl@yahoo.com
-
Stefan Manegold