Everyone, When it comes to compiling WinCE in MSVC80, I get all of those error messages. However, when I compile in EVC4.0 IDE, it will compile cleanly, but when I try to link the file, I would get the same exact error messages.
Can someone tell me what files to use. I have compiled both current SVN trunk and GDAL 1.4.0 versions. For version most current, SVN Trunk, it is missing three files related to gtiff library and one ogr core file, ogr_geos_convert.h (I believe that is the name). All I did was added the files from GDAL 1.4.0 to the SVN trunk (it will cleanly build with no errors but the ones metioned in first email with LNK2001 and LNK2019 errors. Thanks, Robert -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of [email protected] Sent: Tuesday, June 22, 2010 9:11 To: [email protected] Subject: gdal-dev Digest, Vol 73, Issue 47 Send gdal-dev mailing list submissions to [email protected] To subscribe or unsubscribe via the World Wide Web, visit http://lists.osgeo.org/mailman/listinfo/gdal-dev or, via email, send a message with subject or body 'help' to [email protected] You can reach the person managing the list at [email protected] When replying, please edit your Subject line so it is more specific than "Re: Contents of gdal-dev digest..." Today's Topics: 1. GDAL, WinCE dll error when using in my own simple project (Zermeno, Robert J CIV NAVAIR, 472100D) 2. I am trying to run gdal_polygonize.py and I get the following error: gdal.Polygonize() not available. (John Mitchell) ---------------------------------------------------------------------- Message: 1 Date: Tue, 22 Jun 2010 09:08:37 -0700 From: "Zermeno, Robert J CIV NAVAIR, 472100D" <[email protected]> Subject: [gdal-dev] GDAL, WinCE dll error when using in my own simple project To: <[email protected]> Message-ID: <f8a8a114e3f41d4d9157f1becca3ba9103389...@nawechlkez02v.nadsuswe.nads.navy.mil> Content-Type: text/plain; charset="us-ascii" I hope someone has remembered the capability issues concerning WinCE and GDAL (since its not really being maintained right now). My issue is I am able to use the provided MSVC++ 2005 gdal project files and build the project to obtain a gdalce_i.lib and gdalce.dll files. I created two projects, one in EVC4.0 and MSVC++ 2005 IDE. Both compilers have provided me with the following error when I try to statically link the DLL and use: #include "gdal_priv.h" ... GDALAllRegister(); I followed the building and installation guide from: http://www.gdal.org/wince.html, and it all works, but I get the following error messages when I try to use the DLL: 1>------ Build started: Project: WinCE_G, Configuration: Debug Pocket PC 1>2003 (ARMV4) ------ Compiling... 1>cl : Command line warning D9035 : option 'GX' has been deprecated and 1>will be removed in a future release cl : Command line warning D9025 : overriding '/GR-' with '/GR' 1>stdafx.cpp 1>Compiling... 1>cl : Command line warning D9035 : option 'GX' has been deprecated and 1>will be removed in a future release cl : Command line warning D9025 : overriding '/GR-' with '/GR' 1>WinCE_G.cpp 1>Linking... 1> Creating library Pocket PC 2003 (ARMV4)\Debug/WinCE_G.lib and 1>object Pocket PC 2003 (ARMV4)\Debug/WinCE_G.exp WinCE_G.obj : error 1>LNK2001: unresolved external symbol "public: virtual char const * 1>__cdecl GDALMajorObject::GetDescription(void)const " 1>(?getdescript...@gdalmajorobject@@UBAPBDXZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual void __cdecl GDALMajorObject::SetDescription(char const *)" 1>(?setdescript...@gdalmajorobject@@uaax...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual char * * __cdecl GDALMajorObject::GetMetadata(char const *)" 1>(?getmetad...@gdalmajorobject@@uaapapad...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALMajorObject::SetMetadata(char * *,char 1>const *)" (?setmetad...@gdalmajorobject@@UAA?AW4CPLErr@@papad...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual char const * __cdecl GDALMajorObject::GetMetadataItem(char 1>const *,char const *)" 1>(?getmetadatai...@gdalmajorobject@@uaapbdp...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALMajorObject::SetMetadataItem(char 1>const *,char const *,char const *)" 1>(?setmetadatai...@gdalmajorobject@@UAA?AW4CPLErr@@pb...@z) 1>WinCE_G.obj : error LNK2019: unresolved external symbol "public: 1>virtual __cdecl GDALMajorObject::~GDALMajorObject(void)" 1>(??1GDALMajorObject@@u...@xz) referenced in function "public: virtual 1>void * __cdecl GDALMajorObject::`scalar deleting destructor'(unsigned 1>int)" (??_GGDALMajorObject@@uaap...@z) WinCE_G.obj : error LNK2001: 1>unresolved external symbol "protected: virtual enum CPLErr __cdecl 1>GDALDataset::IBuildOverviews(char const *,int,int *,int,int *,int 1>(__cdecl*)(double,char const *,void *),void *)" 1>(?ibuildovervi...@gdaldataset@@MAA?AW4CPLErr@@pbdhpahh1p6ahn0...@z2@Z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "protected: 1>virtual enum CPLErr __cdecl GDALDataset::IRasterIO(enum 1>GDALRWFlag,int,int,int,int,void *,int,int,enum GDALDataType,int,int 1>*,int,int,int)" 1>(?iraste...@gdaldataset@@MAA?AW4CPLErr@@W4GDALRWFlag@@HHHHPAXHHW4GDALD 1>ataType@@hpah...@z) WinCE_G.obj : error LNK2001: unresolved external 1>symbol "public: virtual void __cdecl GDALDataset::FlushCache(void)" 1>(?flushca...@gdaldataset@@UAAXXZ) WinCE_G.obj : error LNK2001: 1>unresolved external symbol "public: virtual char const * __cdecl 1>GDALDataset::GetProjectionRef(void)" 1>(?getprojection...@gdaldataset@@UAAPBDXZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALDataset::SetProjection(char const *)" 1>(?setproject...@gdaldataset@@UAA?AW4CPLErr@@p...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALDataset::GetGeoTransform(double *)" 1>(?getgeotransf...@gdaldataset@@UAA?AW4CPLErr@@p...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALDataset::SetGeoTransform(double *)" 1>(?setgeotransf...@gdaldataset@@UAA?AW4CPLErr@@p...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALDataset::AddBand(enum 1>GDALDataType,char * *)" 1>(?addb...@gdaldataset@@UAA?AW4CPLErr@@W4GDALDataType@@pa...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual void * __cdecl GDALDataset::GetInternalHandle(char const *)" 1>(?getinternalhan...@gdaldataset@@uaapax...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual class GDALDriver * __cdecl GDALDataset::GetDriver(void)" 1>(?getdri...@gdaldataset@@UAAPAVGDALDriver@@XZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual char * * __cdecl GDALDataset::GetFileList(void)" 1>(?getfilel...@gdaldataset@@UAAPAPADXZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual int __cdecl GDALDataset::GetGCPCount(void)" 1>(?getgcpco...@gdaldataset@@UAAHXZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual char const * __cdecl GDALDataset::GetGCPProjection(void)" 1>(?getgcpproject...@gdaldataset@@UAAPBDXZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual struct GDAL_GCP const * __cdecl GDALDataset::GetGCPs(void)" 1>(?getg...@gdaldataset@@UAAPBUGDAL_GCP@@XZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALDataset::SetGCPs(int,struct GDAL_GCP 1>const *,char const *)" 1>(?setg...@gdaldataset@@UAA?AW4CPLErr@@HPBUGDAL_GCP@@p...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl 1>GDALDataset::AdviseRead(int,int,int,int,int,int,enum 1>GDALDataType,int,int *,char * *)" 1>(?adviser...@gdaldataset@@UAA?AW4CPLErr@@HHHHHHW4GDALDataType@@HPAHPAP 1>a...@z) WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALDataset::CreateMaskBand(int)" 1>(?createmaskb...@gdaldataset@@UAA?AW4CPLErr@@h...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual class GDALAsyncReader * __cdecl 1>GDALDataset::BeginAsyncReader(int,int,int,int,void *,int,int,enum 1>GDALDataType,int,int *,int,int,int,char * *)" 1>(?beginasyncrea...@gdaldataset@@UAAPAVGDALAsyncReader@@HHHHPAXHHW4GDAL 1>DataType@@hpahhhhpa...@z) WinCE_G.obj : error LNK2001: unresolved 1>external symbol "public: virtual void __cdecl 1>GDALDataset::EndAsyncReader(class GDALAsyncReader *)" 1>(?endasyncrea...@gdaldataset@@UAAXPAVGDALAsyncReader@@@Z) 1>WinCE_G.obj : error LNK2019: unresolved external symbol "public: 1>virtual __cdecl GDALDataset::~GDALDataset(void)" 1>(??1GDALDataset@@u...@xz) referenced in function "public: virtual void 1>* __cdecl GDALDataset::`scalar deleting destructor'(unsigned int)" 1>(??_GGDALDataset@@uaap...@z) WinCE_G.obj : error LNK2019: unresolved 1>external symbol "public: virtual __cdecl 1>GDALRasterBlock::~GDALRasterBlock(void)" (??1GDALRasterBlock@@u...@xz) 1>referenced in function "public: virtual void * __cdecl 1>GDALRasterBlock::`scalar deleting destructor'(unsigned int)" 1>(??_GGDALRasterBlock@@uaap...@z) WinCE_G.obj : error LNK2019: 1>unresolved external symbol "public: __cdecl 1>GDALColorTable::GDALColorTable(enum GDALPaletteInterp)" 1>(??0GDALColorTable@@q...@w4gdalpaletteinterp@@@Z) referenced in 1>function "public: void __cdecl GDALColorTable::`default constructor 1>closure'(void)" (??_FGDALColorTable@@QAAXXZ) WinCE_G.obj : error 1>LNK2001: unresolved external symbol "protected: virtual enum CPLErr 1>__cdecl GDALRasterBand::IWriteBlock(int,int,void *)" 1>(?iwritebl...@gdalrasterband@@MAA?AW4CPLErr@@hh...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "protected: 1>virtual enum CPLErr __cdecl GDALRasterBand::IRasterIO(enum 1>GDALRWFlag,int,int,int,int,void *,int,int,enum GDALDataType,int,int)" 1>(?iraste...@gdalrasterband@@MAA?AW4CPLErr@@W4GDALRWFlag@@HHHHPAXHHW4GD 1>ALDataType@@h...@z) WinCE_G.obj : error LNK2001: unresolved external 1>symbol "public: virtual enum CPLErr __cdecl 1>GDALRasterBand::FlushCache(void)" 1>(?flushca...@gdalrasterband@@UAA?AW4CPLErr@@XZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual char * * __cdecl GDALRasterBand::GetCategoryNames(void)" 1>(?getcategoryna...@gdalrasterband@@UAAPAPADXZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual double __cdecl GDALRasterBand::GetNoDataValue(int *)" 1>(?getnodatava...@gdalrasterband@@uaan...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual double __cdecl GDALRasterBand::GetMinimum(int *)" 1>(?getmini...@gdalrasterband@@uaan...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual double __cdecl GDALRasterBand::GetMaximum(int *)" 1>(?getmaxi...@gdalrasterband@@uaan...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual double __cdecl GDALRasterBand::GetOffset(int *)" 1>(?getoff...@gdalrasterband@@uaan...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual double __cdecl GDALRasterBand::GetScale(int *)" 1>(?getsc...@gdalrasterband@@uaan...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual char const * __cdecl GDALRasterBand::GetUnitType(void)" 1>(?getunitt...@gdalrasterband@@UAAPBDXZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum GDALColorInterp __cdecl 1>GDALRasterBand::GetColorInterpretation(void)" 1>(?getcolorinterpretat...@gdalrasterband@@UAA?AW4GDALColorInterp@@XZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual class GDALColorTable * __cdecl 1>GDALRasterBand::GetColorTable(void)" 1>(?getcolorta...@gdalrasterband@@UAAPAVGDALColorTable@@XZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALRasterBand::Fill(double,double)" 1>(?f...@gdalrasterband@@UAA?AW4CPLErr@@n...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALRasterBand::SetCategoryNames(char * 1>*)" (?setcategoryna...@gdalrasterband@@UAA?AW4CPLErr@@pa...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALRasterBand::SetNoDataValue(double)" 1>(?setnodatava...@gdalrasterband@@UAA?AW4CPLErr@@n...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALRasterBand::SetColorTable(class 1>GDALColorTable *)" 1>(?setcolorta...@gdalrasterband@@UAA?AW4CPLErr@@PAVGDALColorTable@@@Z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl 1>GDALRasterBand::SetColorInterpretation(enum GDALColorInterp)" 1>(?setcolorinterpretat...@gdalrasterband@@UAA?AW4CPLErr@@W4GDALColorInt 1>erp@@@Z) WinCE_G.obj : error LNK2001: unresolved external symbol 1>"public: virtual enum CPLErr __cdecl 1>GDALRasterBand::SetOffset(double)" 1>(?setoff...@gdalrasterband@@UAA?AW4CPLErr@@n...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALRasterBand::SetScale(double)" 1>(?setsc...@gdalrasterband@@UAA?AW4CPLErr@@n...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALRasterBand::SetUnitType(char const *)" 1>(?setunitt...@gdalrasterband@@UAA?AW4CPLErr@@p...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl 1>GDALRasterBand::GetStatistics(int,int,double *,double *,double 1>*,double *)" 1>(?getstatist...@gdalrasterband@@UAA?AW4CPLErr@@hhpan...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl 1>GDALRasterBand::ComputeStatistics(int,double *,double *,double 1>*,double *,int (__cdecl*)(double,char const *,void *),void *)" 1>(?computestatist...@gdalrasterband@@UAA?AW4CPLErr@@HPAN000P6AHNPBDPAX@ 1>z...@z) WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl 1>GDALRasterBand::SetStatistics(double,double,double,double)" 1>(?setstatist...@gdalrasterband@@UAA?AW4CPLErr@@n...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl 1>GDALRasterBand::ComputeRasterMinMax(int,double *)" 1>(?computerastermin...@gdalrasterband@@UAA?AW4CPLErr@@h...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual int __cdecl GDALRasterBand::HasArbitraryOverviews(void)" 1>(?hasarbitraryovervi...@gdalrasterband@@UAAHXZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual int __cdecl GDALRasterBand::GetOverviewCount(void)" 1>(?getoverviewco...@gdalrasterband@@UAAHXZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual class GDALRasterBand * __cdecl 1>GDALRasterBand::GetOverview(int)" 1>(?getoverv...@gdalrasterband@@uaap...@h@Z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual class GDALRasterBand * __cdecl 1>GDALRasterBand::GetRasterSampleOverview(int)" 1>(?getrastersampleoverv...@gdalrasterband@@uaap...@h@Z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALRasterBand::BuildOverviews(char const 1>*,int,int *,int (__cdecl*)(double,char const *,void *),void *)" 1>(?buildovervi...@gdalrasterband@@UAA?AW4CPLErr@@pbdhpahp6ahn0...@z2@Z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl 1>GDALRasterBand::AdviseRead(int,int,int,int,int,int,enum 1>GDALDataType,char * *)" 1>(?adviser...@gdalrasterband@@UAA?AW4CPLErr@@HHHHHHW4GDALDataType@@PAPA 1>d...@z) WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl 1>GDALRasterBand::GetHistogram(double,double,int,int *,int,int,int 1>(__cdecl*)(double,char const *,void *),void *)" 1>(?gethistog...@gdalrasterband@@UAA?AW4CPLErr@@nnhpahhhp6ahnpbd...@z2@Z 1>) WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALRasterBand::GetDefaultHistogram(double 1>*,double *,int *,int * *,int,int (__cdecl*)(double,char const *,void 1>*),void *)" 1>(?getdefaulthistog...@gdalrasterband@@UAA?AW4CPLErr@@PAN0PAHPAPAHHP6AH 1>npbd...@z4@Z) WinCE_G.obj : error LNK2001: unresolved external symbol 1>"public: virtual enum CPLErr __cdecl 1>GDALRasterBand::SetDefaultHistogram(double,double,int,int *)" 1>(?setdefaulthistog...@gdalrasterband@@UAA?AW4CPLErr@@nnh...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual class GDALRasterAttributeTable const * __cdecl 1>GDALRasterBand::GetDefaultRAT(void)" 1>(?getdefault...@gdalrasterband@@UAAPBVGDALRasterAttributeTable@@XZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALRasterBand::SetDefaultRAT(class 1>GDALRasterAttributeTable const *)" 1>(?setdefault...@gdalrasterband@@UAA?AW4CPLErr@@PBVGDALRasterAttributeT 1>able@@@Z) WinCE_G.obj : error LNK2001: unresolved external symbol 1>"public: virtual class GDALRasterBand * __cdecl 1>GDALRasterBand::GetMaskBand(void)" 1>(?getmaskb...@gdalrasterband@@uaap...@xz) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual int __cdecl GDALRasterBand::GetMaskFlags(void)" 1>(?getmaskfl...@gdalrasterband@@UAAHXZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual enum CPLErr __cdecl GDALRasterBand::CreateMaskBand(int)" 1>(?createmaskb...@gdalrasterband@@UAA?AW4CPLErr@@h...@z) 1>WinCE_G.obj : error LNK2019: unresolved external symbol "public: 1>virtual __cdecl GDALRasterBand::~GDALRasterBand(void)" 1>(??1GDALRasterBand@@u...@xz) referenced in function "public: virtual 1>void * __cdecl GDALRasterBand::`scalar deleting destructor'(unsigned 1>int)" (??_GGDALRasterBand@@uaap...@z) WinCE_G.obj : error LNK2001: 1>unresolved external symbol "protected: virtual enum CPLErr __cdecl 1>GDALAllValidMaskBand::IReadBlock(int,int,void *)" 1>(?ireadbl...@gdalallvalidmaskband@@MAA?AW4CPLErr@@hh...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual class GDALRasterBand * __cdecl 1>GDALAllValidMaskBand::GetMaskBand(void)" 1>(?getmaskb...@gdalallvalidmaskband@@UAAPAVGDALRasterBand@@XZ) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual int __cdecl GDALAllValidMaskBand::GetMaskFlags(void)" 1>(?getmaskfl...@gdalallvalidmaskband@@UAAHXZ) 1>WinCE_G.obj : error LNK2019: unresolved external symbol "public: 1>virtual __cdecl GDALAllValidMaskBand::~GDALAllValidMaskBand(void)" 1>(??1GDALAllValidMaskBand@@u...@xz) referenced in function "public: 1>virtual void * __cdecl GDALAllValidMaskBand::`scalar deleting 1>destructor'(unsigned int)" (??_GGDALAllValidMaskBand@@uaap...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "protected: 1>virtual enum CPLErr __cdecl 1>GDALNoDataMaskBand::IReadBlock(int,int,void *)" 1>(?ireadbl...@gdalnodatamaskband@@MAA?AW4CPLErr@@hh...@z) 1>WinCE_G.obj : error LNK2019: unresolved external symbol "public: 1>virtual __cdecl GDALNoDataMaskBand::~GDALNoDataMaskBand(void)" 1>(??1GDALNoDataMaskBand@@u...@xz) referenced in function "public: 1>virtual void * __cdecl GDALNoDataMaskBand::`scalar deleting 1>destructor'(unsigned int)" (??_GGDALNoDataMaskBand@@uaap...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "protected: 1>virtual enum CPLErr __cdecl 1>GDALNoDataValuesMaskBand::IReadBlock(int,int,void *)" 1>(?ireadbl...@gdalnodatavaluesmaskband@@MAA?AW4CPLErr@@hh...@z) 1>WinCE_G.obj : error LNK2019: unresolved external symbol "public: 1>virtual __cdecl 1>GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand(void)" 1>(??1GDALNoDataValuesMaskBand@@u...@xz) referenced in function "public: 1>virtual void * __cdecl GDALNoDataValuesMaskBand::`scalar deleting 1>destructor'(unsigned int)" (??_GGDALNoDataValuesMaskBand@@uaap...@z) 1>WinCE_G.obj : error LNK2019: unresolved external symbol "public: 1>virtual __cdecl GDALDriver::~GDALDriver(void)" (??1GDALDriver@@u...@xz) 1>referenced in function "public: virtual void * __cdecl 1>GDALDriver::`scalar deleting destructor'(unsigned int)" 1>(??_GGDALDriver@@uaap...@z) WinCE_G.obj : error LNK2019: unresolved 1>external symbol "public: virtual __cdecl 1>GDALDriverManager::~GDALDriverManager(void)" 1>(??1GDALDriverManager@@u...@xz) referenced in function "public: virtual 1>void * __cdecl GDALDriverManager::`scalar deleting 1>destructor'(unsigned int)" (??_GGDALDriverManager@@uaap...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual int __cdecl GDALAsyncReader::LockBuffer(double)" 1>(?lockbuf...@gdalasyncreader@@ua...@z) 1>WinCE_G.obj : error LNK2001: unresolved external symbol "public: 1>virtual void __cdecl GDALAsyncReader::UnlockBuffer(void)" 1>(?unlockbuf...@gdalasyncreader@@UAAXXZ) 1>WinCE_G.obj : error LNK2019: unresolved external symbol "public: 1>virtual __cdecl GDALAsyncReader::~GDALAsyncReader(void)" 1>(??1GDALAsyncReader@@u...@xz) referenced in function "public: virtual 1>void * __cdecl GDALAsyncReader::`scalar deleting destructor'(unsigned 1>int)" (??_GGDALAsyncReader@@uaap...@z) WinCE_G.obj : error LNK2019: 1>unresolved external symbol GDALAllRegister referenced in function 1>"long __cdecl WndProc(struct HWND__ *,unsigned int,unsigned int,long)" 1>(?WndProc@@YAJPAUHWND__@@i...@z) Pocket PC 2003 1>(ARMV4)\Debug/WinCE_G.exe : fatal error LNK1120: 82 unresolved 1>externals ************************ There are a lot of LNK2001 and a LNK2019 errors. I thought it might be not including the proper include files. I obtain the include files from the include files exported when compiling for VS2008. I properly linked the DLL by adding the VC++ directories for Include and Library Files. I also placed the gdalce_i.lib file into the Additional Dependences tab. What other options can I do or is there something I am not seeing? Thanks, Robert -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 4926 bytes Desc: not available Url : http://lists.osgeo.org/pipermail/gdal-dev/attachments/20100622/804e4ab3/smime-0001.bin ------------------------------ Message: 2 Date: Tue, 22 Jun 2010 12:10:53 -0400 From: John Mitchell <[email protected]> Subject: [gdal-dev] I am trying to run gdal_polygonize.py and I get the following error: gdal.Polygonize() not available. To: gdal-dev <[email protected]> Cc: John Mitchell <[email protected]>, "John J. Mitchell" <[email protected]> Message-ID: <[email protected]> Content-Type: text/plain; charset=ISO-8859-1 Hi, I am trying to run gdal_polygonize.py and I get the following error: gdal.Polygonize() not available. You are likely using "old gen" bindings or an older version of the next gen bindings. Anyone have any idea how I can get gdal_polygonize to run within FWTools 2.4.7? Below is the command and error from the command line. Thanks, John C:\Program Files\FWTools2.4.7>python "%FWTOOLS_DIR%\bin\gdal_polygonize.py" E:\Jacksonville-StJohns_output\all_tiles\converted1\64_w3.tif c:\jacksonville-stjohns_gdal_polygonize.shp gdal.Polygonize() not available. You are likely using "old gen" bindings or an older version of the next gen bindings. ------------------------------ _______________________________________________ gdal-dev mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/gdal-dev End of gdal-dev Digest, Vol 73, Issue 47 ****************************************
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________ gdal-dev mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/gdal-dev
