A bug in MrBayes 发表于 2016-04-28 更新于 2016-09-25 分类于 技术学习 阅读次数: Valine: a bug in MrBayesbug in MrBayes Segmentaion Fault on AMD 64C语言中,32位和64位long各占4个和8个字节,因此造成一个Bug参照: https://sourceforge.net/p/mrbayes/bugs/55/ 修改如下123456#long unsigned int -> unsigned int$ sed -i 's/long unsigned int/unsigned int/g' *.h *.c#long int -> int$ sed -i 's/long int/int/g' *.h *.c#long -> int$ sed -i 's/long/int/g' *.h *.c