欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

gdal3.0编译笔记

程序员文章站 2022-07-14 20:51:45
...

作者:朱金灿

来源:https://blog.csdn.net/clever101

 

       编译环境:VS2015,win7 64位。常规操作:使用cd命令切换到gdal源码根目录下。

常用的编译命令:

nmake -f makefile.vc DEBUG=1  // 编译32位的debug版本

nmake -f makefile.vc //编译32位的release版本

nmake -f makefile.vc WIN64=1 DEBUG=1  //编译64位的debug版本

nmake -f makefile.vc WIN64=1 //编译64位的release版本

nmake -f makefile.vc clean // 清理编译

nmake -f makefile.vc devinstall WIN64=1 // 编译release版本并安装开发头文件和库文件

设置debug版本和release版本的输出库名字:

将nmake.opt文件中的:

GDAL_DLL =  gdal$(VERSION).dll

改为:

!IF "$(DEBUG)" == "1"

 

GDAL_DLL =  gdal$(VERSION)D.dll

 

!ELSE

 

GDAL_DLL =  gdal$(VERSION).dll

 

!ENDIF

 

将GDALLIB   =    $(GDAL_ROOT)/gdal_i.lib

 

改为:

!IF "$(DEBUG)" == "1"

 

GDALLIB =    $(GDAL_ROOT)/gdal_i_d.lib

 

!ELSE

 

GDALLIB =    $(GDAL_ROOT)/gdal_i.lib

 

!ENDIF

 

遇到的问题:

  正在创建库 gdal_i.lib 和对象 gdal_i.exp

LINK : error LNK2001: 无法解析的外部符号 [email protected]

LINK : error LNK2001: 无法解析的外部符号 [email protected]

LINK : error LNK2001: 无法解析的外部符号 [email protected]

LINK : error LNK2001: 无法解析的外部符号 [email protected]

LINK : error LNK2001: 无法解析的外部符号 [email protected]

LINK : error LNK2001: 无法解析的外部符号 _OGRRegisterAll

LINK : error LNK2001: 无法解析的外部符号 _OGR_G_GetPointCount

LINK : error LNK2001: 无法解析的外部符号 _OSRValidate

gdal300.dll : fatal error LNK1120: 8 个无法解析的外部命令

NMAKE : fatal error U1077: “"D:\Program Files (x86)\Microsoft Visual Studio 14.

0\VC\BIN\amd64\link.EXE"”: 返回代码“0x460”

解决办法是:

GDAL编译Windows平台下64位的方式

集成了proj6.1、sqlite3.0的gdal库,是目前最新版本的gdal库:

下载地址:gdal3.0

 

相关标签: gdal3.0