我正在使用 UBUNTU 14.04(64 位操作系统),在安装 CGNS 最新稳定版本时遇到问题。虽然我已成功完成 CGNS 及其支持目录(标题中提到的名称)的安装,但在其上运行相关程序文件时显示以下错误:
$ g++ -Wall -I/usr/local/include -L/usr/local/ prep_tri.cpp -lhdf5 -lcgns
/usr/bin/ld: cannot find -lhdf5
collect2: error: ld returned 1 exit status
$
有人能告诉我如何解决这个问题吗?
答案1
您可能需要安装libhdf5-7
和libhdf5-dev
:
sudo apt-get install libhdf5-7 libhdf5-dev