红联Linux门户
Linux帮助

GMT 5.2.1编译过程中NaN报错的解决办法

发布时间:2016-11-01 10:02:07来源:gmt-china.org作者:GMT 中文社区
在 Ubunut 16.04 或者其他比较新的 Linux 发行版下编译 GMT 5.2.1 的源码时,会出现如下错误而导致安装失败:
non-floating-point argument in call to function '__builtin_isnan'
 
解决办法是,找到源码 gmt-5.2.1/src/xyz2grd.c,将第752行的:
(GMT_is_dnan (GMT->common.d.active[GMT_IN])) ? sprintf (e_value, "NaN") : sprintf (e_value, GMT->current.setting.format_float_out, GMT->common.d.nan_proxy[GMT_IN]);
改成:
(GMT->common.d.active[GMT_IN]) ? sprintf (e_value, GMT->current.setting.format_float_out, GMT->common.d.nan_proxy[GMT_IN]) : sprintf (e_value, "NaN");
再编译即可。 
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25615.html