内容简介:作者:朱金灿来源:编译环境:VS2015,win7 64位。常规操作:使用cd命令切换到gdal源码根目录下。
作者:朱金灿
来源: 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: 无法解析的外部符号 _OCTNewCoordinateTransformation@8
LINK : error LNK2001: 无法解析的外部符号 _GDALDitherRGB2PCT@28
LINK : error LNK2001: 无法解析的外部符号 _GDALComputeMedianCutPCT@32
LINK : error LNK2001: 无法解析的外部符号 _GDALReprojectImage@48
LINK : error LNK2001: 无法解析的外部符号 _GDALSimpleImageWarp@36
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”
解决办法是:
集成了proj6.1、 sqlite 3.0的gdal库,是目前最新版本的gdal库:
下载地址:gdal3.0
以上所述就是小编给大家介绍的《gdal3.0编译笔记》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Java in a Nutshell, 6th Edition
Benjamin J Evans、David Flanagan / O'Reilly Media / 2014-10 / USD 59.99
The latest edition of Java in a Nutshell is designed to help experienced Java programmers get the most out of Java 7 and 8, but it's also a learning path for new developers. Chock full of examples tha......一起来看看 《Java in a Nutshell, 6th Edition》 这本书的介绍吧!