HDF5 Installation Error in the latest Ubuntu 18.04LTS with Intel Compilers
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
1
down vote
favorite
While I used HDF5 library without any problem with Ubuntu version 16.04 LTS, after I upgraded Ubuntu to Ubuntu 18.04 LTS, I have trouble in installing HDF5 with Intel Fortran and C Compilers.
I successfully installed HDF5 with gcc and gfortran.
But, I need to install HDF5 with Intel Fortran and C Compilers to further usage of scientific computation codes which are only compatible with Intel compilers.
I installed szip-2.1.1
and zlib-1.2.11
in the path of $HOME/LIB
using
- ifort version 18.0.2
- icc version 18.0.2 (gcc version 7.0.0 compatibility)
- icpc version 18.0.2 (gcc version 7.0.0 compatibility)
(parallel_studio_xe_2018_update2_cluster_edition, compilers_and_libraries_2018.2.199)
with these flags in bash profile
export CC=icc
export CXX=icpc
export FC=ifort
export F9X=ifort
export CFLAGS='-O3 -xHost -ip'
export CXXFLAGS='-O3 -xHost -ip'
export FCFLAGS='-O3 -xHost -ip'
and tried to install
hdf5-1.10.2
with following configuration
./configure --prefix=$HOME/LIB --with-zlib=$HOME/LIB --with-szip=$HOME/LIB LD_LIBRARY_PATH=-L/home/scyook/LIB/lib CPPFLAGS=-I/home/scyook/LIB/include --enable-fortran --enable-cxx --enable-fortran2003
However next error message appears.
checking size of size_t... configure: error: in `/home/scyook/LIB/hdf5-1.10.2`:
configure: error: cannot compute sizeof (size_t)
these are the last parts of config.log
. #define SIZEOF_INT32_T 0
. #define SIZEOF_UINT32_T 0
. #define SIZEOF_INT_LEAST32_T 0
. #define SIZEOF_UINT_LEAST32_T 0
. #define SIZEOF_INT_FAST32_T 0
. #define SIZEOF_UINT_FAST32_T 0
. #define SIZEOF_INT64_T 0
. #define SIZEOF_UINT64_T 0
. #define SIZEOF_INT_LEAST64_T 0
. #define SIZEOF_UINT_LEAST64_T 0
. #define SIZEOF_INT_FAST64_T 0
. #define SIZEOF_UINT_FAST64_T 0
configure: exit 77
Could I get help for resolving this issue?
software-installation 18.04 hadoop icc
add a comment |Â
up vote
1
down vote
favorite
While I used HDF5 library without any problem with Ubuntu version 16.04 LTS, after I upgraded Ubuntu to Ubuntu 18.04 LTS, I have trouble in installing HDF5 with Intel Fortran and C Compilers.
I successfully installed HDF5 with gcc and gfortran.
But, I need to install HDF5 with Intel Fortran and C Compilers to further usage of scientific computation codes which are only compatible with Intel compilers.
I installed szip-2.1.1
and zlib-1.2.11
in the path of $HOME/LIB
using
- ifort version 18.0.2
- icc version 18.0.2 (gcc version 7.0.0 compatibility)
- icpc version 18.0.2 (gcc version 7.0.0 compatibility)
(parallel_studio_xe_2018_update2_cluster_edition, compilers_and_libraries_2018.2.199)
with these flags in bash profile
export CC=icc
export CXX=icpc
export FC=ifort
export F9X=ifort
export CFLAGS='-O3 -xHost -ip'
export CXXFLAGS='-O3 -xHost -ip'
export FCFLAGS='-O3 -xHost -ip'
and tried to install
hdf5-1.10.2
with following configuration
./configure --prefix=$HOME/LIB --with-zlib=$HOME/LIB --with-szip=$HOME/LIB LD_LIBRARY_PATH=-L/home/scyook/LIB/lib CPPFLAGS=-I/home/scyook/LIB/include --enable-fortran --enable-cxx --enable-fortran2003
However next error message appears.
checking size of size_t... configure: error: in `/home/scyook/LIB/hdf5-1.10.2`:
configure: error: cannot compute sizeof (size_t)
these are the last parts of config.log
. #define SIZEOF_INT32_T 0
. #define SIZEOF_UINT32_T 0
. #define SIZEOF_INT_LEAST32_T 0
. #define SIZEOF_UINT_LEAST32_T 0
. #define SIZEOF_INT_FAST32_T 0
. #define SIZEOF_UINT_FAST32_T 0
. #define SIZEOF_INT64_T 0
. #define SIZEOF_UINT64_T 0
. #define SIZEOF_INT_LEAST64_T 0
. #define SIZEOF_UINT_LEAST64_T 0
. #define SIZEOF_INT_FAST64_T 0
. #define SIZEOF_UINT_FAST64_T 0
configure: exit 77
Could I get help for resolving this issue?
software-installation 18.04 hadoop icc
I guess you could use the available patches cdn-fastly.deb.debian.org/debian/pool/main/h/hdf5/⦠âÂÂdebian/patches/*
â Knud Larsen
May 13 at 4:43
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
While I used HDF5 library without any problem with Ubuntu version 16.04 LTS, after I upgraded Ubuntu to Ubuntu 18.04 LTS, I have trouble in installing HDF5 with Intel Fortran and C Compilers.
I successfully installed HDF5 with gcc and gfortran.
But, I need to install HDF5 with Intel Fortran and C Compilers to further usage of scientific computation codes which are only compatible with Intel compilers.
I installed szip-2.1.1
and zlib-1.2.11
in the path of $HOME/LIB
using
- ifort version 18.0.2
- icc version 18.0.2 (gcc version 7.0.0 compatibility)
- icpc version 18.0.2 (gcc version 7.0.0 compatibility)
(parallel_studio_xe_2018_update2_cluster_edition, compilers_and_libraries_2018.2.199)
with these flags in bash profile
export CC=icc
export CXX=icpc
export FC=ifort
export F9X=ifort
export CFLAGS='-O3 -xHost -ip'
export CXXFLAGS='-O3 -xHost -ip'
export FCFLAGS='-O3 -xHost -ip'
and tried to install
hdf5-1.10.2
with following configuration
./configure --prefix=$HOME/LIB --with-zlib=$HOME/LIB --with-szip=$HOME/LIB LD_LIBRARY_PATH=-L/home/scyook/LIB/lib CPPFLAGS=-I/home/scyook/LIB/include --enable-fortran --enable-cxx --enable-fortran2003
However next error message appears.
checking size of size_t... configure: error: in `/home/scyook/LIB/hdf5-1.10.2`:
configure: error: cannot compute sizeof (size_t)
these are the last parts of config.log
. #define SIZEOF_INT32_T 0
. #define SIZEOF_UINT32_T 0
. #define SIZEOF_INT_LEAST32_T 0
. #define SIZEOF_UINT_LEAST32_T 0
. #define SIZEOF_INT_FAST32_T 0
. #define SIZEOF_UINT_FAST32_T 0
. #define SIZEOF_INT64_T 0
. #define SIZEOF_UINT64_T 0
. #define SIZEOF_INT_LEAST64_T 0
. #define SIZEOF_UINT_LEAST64_T 0
. #define SIZEOF_INT_FAST64_T 0
. #define SIZEOF_UINT_FAST64_T 0
configure: exit 77
Could I get help for resolving this issue?
software-installation 18.04 hadoop icc
While I used HDF5 library without any problem with Ubuntu version 16.04 LTS, after I upgraded Ubuntu to Ubuntu 18.04 LTS, I have trouble in installing HDF5 with Intel Fortran and C Compilers.
I successfully installed HDF5 with gcc and gfortran.
But, I need to install HDF5 with Intel Fortran and C Compilers to further usage of scientific computation codes which are only compatible with Intel compilers.
I installed szip-2.1.1
and zlib-1.2.11
in the path of $HOME/LIB
using
- ifort version 18.0.2
- icc version 18.0.2 (gcc version 7.0.0 compatibility)
- icpc version 18.0.2 (gcc version 7.0.0 compatibility)
(parallel_studio_xe_2018_update2_cluster_edition, compilers_and_libraries_2018.2.199)
with these flags in bash profile
export CC=icc
export CXX=icpc
export FC=ifort
export F9X=ifort
export CFLAGS='-O3 -xHost -ip'
export CXXFLAGS='-O3 -xHost -ip'
export FCFLAGS='-O3 -xHost -ip'
and tried to install
hdf5-1.10.2
with following configuration
./configure --prefix=$HOME/LIB --with-zlib=$HOME/LIB --with-szip=$HOME/LIB LD_LIBRARY_PATH=-L/home/scyook/LIB/lib CPPFLAGS=-I/home/scyook/LIB/include --enable-fortran --enable-cxx --enable-fortran2003
However next error message appears.
checking size of size_t... configure: error: in `/home/scyook/LIB/hdf5-1.10.2`:
configure: error: cannot compute sizeof (size_t)
these are the last parts of config.log
. #define SIZEOF_INT32_T 0
. #define SIZEOF_UINT32_T 0
. #define SIZEOF_INT_LEAST32_T 0
. #define SIZEOF_UINT_LEAST32_T 0
. #define SIZEOF_INT_FAST32_T 0
. #define SIZEOF_UINT_FAST32_T 0
. #define SIZEOF_INT64_T 0
. #define SIZEOF_UINT64_T 0
. #define SIZEOF_INT_LEAST64_T 0
. #define SIZEOF_UINT_LEAST64_T 0
. #define SIZEOF_INT_FAST64_T 0
. #define SIZEOF_UINT_FAST64_T 0
configure: exit 77
Could I get help for resolving this issue?
software-installation 18.04 hadoop icc
edited May 13 at 4:36
muru
1
1
asked May 13 at 4:06
Shimchan Yook
61
61
I guess you could use the available patches cdn-fastly.deb.debian.org/debian/pool/main/h/hdf5/⦠âÂÂdebian/patches/*
â Knud Larsen
May 13 at 4:43
add a comment |Â
I guess you could use the available patches cdn-fastly.deb.debian.org/debian/pool/main/h/hdf5/⦠âÂÂdebian/patches/*
â Knud Larsen
May 13 at 4:43
I guess you could use the available patches cdn-fastly.deb.debian.org/debian/pool/main/h/hdf5/⦠âÂÂ
debian/patches/*
â Knud Larsen
May 13 at 4:43
I guess you could use the available patches cdn-fastly.deb.debian.org/debian/pool/main/h/hdf5/⦠âÂÂ
debian/patches/*
â Knud Larsen
May 13 at 4:43
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1035572%2fhdf5-installation-error-in-the-latest-ubuntu-18-04lts-with-intel-compilers%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
I guess you could use the available patches cdn-fastly.deb.debian.org/debian/pool/main/h/hdf5/⦠âÂÂ
debian/patches/*
â Knud Larsen
May 13 at 4:43