GAMIT安装备忘

系统环境:

VMware Workstation9 + ubuntu 10.04

操作

1.安装VMware Workstation

参考:

VMware Workstation下载:http://pan.baidu.com/share/link?shareid=407480&uk=2585697184Win

安装说明:http://tieba.baidu.com/p/2246570006

2.安装ubuntu 10.04

安装说明:http://wenku.baidu.com/view/cfa49b242f60ddccda38a0f8.html

3.安装GAMIT

主要参考了郭博峰的安装说明

最后出现了这样的错误:

++++++++++++++++++++++++++++++++++++++++++
Make sure the common libraries are current
++++++++++++++++++++++++++++++++++++++++++


Running unimake to create Makefile for comlib
System name:  Linux ubuntu 2.6.35-22-generic #33-Ubuntu SMP Sun Sep 19 20:34:50 UTC 2010 i686 GNU/Linux
System release number translated to  2635
No i86 compiler specification--assuming G77
ls: No match.
Machine-dependent source-files selected for com_lib :  bit_util_g77 cand_g77 cor_g77 fmpopen_g77 getdir_g77 getmac_g77 inkey_g77 irename_g77 pickfn_g77 fseekg_g77 fmprename_g77 fmpshortname_g77 fmprunprog_g77 ferror_g77 systime_g77 execute_g77
bit_util_g77.[cf]: No match.
Failure in make_gamit -- install_software terminated

解决方案:通过安装G77解决

1. 在/etc/apt/source.list中最后头添加如下源(以root的身份,或用 sudo):
deb http://hu.archive.ubuntu.com/ubuntu/ hardy universe
deb-src http://hu.archive.ubuntu.com/ubuntu/ hardy universe
deb http://hu.archive.ubuntu.com/ubuntu/ hardy-updates universe
deb-src http://hu.archive.ubuntu.com/ubuntu/ hardy-updates universe

2. 安装aptitude
sudo apt-get install aptitude

3. 然后执行如下:

sudo aptitude update
sudo aptitude install g77

2.之后提示

rnx2crx.c:87:13: warning: built-in function ‘y0’ declared as non-function [enabled by default]

rnx2crx.c:87:34: warning: built-in function ‘y1’ declared as non-function [enabled by default]

rnx2crx.c:108:6: error: conflicting types for ‘getline’

/usr/include/stdio.h:671:20: note: previous declaration of ‘getline’ was here

rnx2crx.c:559:6: error: conflicting types for ‘getline’

/usr/include/stdio.h:671:20: note: previous declaration of ‘getline’ was here

rnx2crx.c: In function ‘putdiff’:

rnx2crx.c:671:9: warning: '0' flag ignored with precision and ‘%d’ gnu_printf format [-Wformat]

rnx2crx.c: In function ‘put_clock’:

rnx2crx.c:689:9: warning: '0' flag ignored with precision and ‘%d’ gnu_printf format [-Wformat]

make: *** [rnx2crx] Error 1

Failure in make_gamit -- install_software terminated

解决方案:

根据错误实体是getline这个函数出了点问题,解决方法,找到rnx2crx.c,修改里面所有的getline为mygetline,具体位置在:

/opt/gamit/gamit/utils/rnx2crx.c(此处gamit为自己解压缩放置的路径)


之后就安装成功了!




你可能感兴趣的:(GAMIT安装,g77)