|
发表于 2009-9-1 22:54:25
|
显示全部楼层
You might get an error saying that "lg2c could not be found" when
you run simulation requiring fortran compiler. The library libg2c.so
should exist in your Centos but ABAQUS cannot find it in the path. You
can check the location of this file by using the command
$ locate libg2c.so
/usr/lib/gcc-lib/x86_64-redhat-linux/3.2.3/libg2c.so
/usr/lib/gcc-lib/x86_64-redhat-linux/3.2.3/32/libg2c.so
/usr/lib64/libg2c.so.0
/usr/lib64/libg2c.so.0.0.0
- Make a link to the libg2c.so file in the folder /usr/lib/ using
the command
$ su -
$ ln -s /usr/lib64/libg2c.so.0.0.0 /usr/lib/libg2c.so |
|