리눅스/기본
configure: error: Can't find or link to the hdf5 library. Use --disable-netcdf-4, or see config.log for errors.
Seob
2015. 5. 21. 16:02
반응형
에러 : configure: error: Can't find or link to the hdf5 library. Use --disable-netcdf-4, or see config.log for errors.
해결 방법 :
Netcdf Configure 시 위와 같은 에러가 발생한다.
이 경우 hdf5 라이브러리를 찾지 못하는 경우다.
export CPPFLAGS=-I[HDF5 Include 경로]
export LDFLAGS=-L[HDF5 Lib 경로]
위와 같이 설정해주면 된다.
아직도 이해가 잘 안된다면 hdf5 경로가 있다고 치자.
/usr/local/hdf5/include와 /usr/local/hdf5/lib 있다고 가정 할 경우
export CPPFLAGS=-I/usr/local/hdf5/include
export LDFLAGS=-L/usr/local/hdf5/lib
이렇게 하면 된다.
반응형