ornladios / ADIOS

The old ADIOS 1.x code repository. Look for ADIOS2 for new repo
https://csmd.ornl.gov/adios
Other
54 stars 40 forks source link

there is no configure file in the master version #144

Closed lwh1990 closed 6 years ago

lwh1990 commented 6 years ago

Hi, all I am a new user to ADIOS. I cannot figure out how to install when there is no configure file in the master version. Thanks.

pnorbert commented 6 years ago

Hi, Is there any reason you don't just download the 1.12 version from http://users.nccs.gov/~pnorbert/adios-1.12.0.tar.gz? That has the configure file. We don't store the autogenerated files in the git repository. You need to run ./autogen.sh first to generate them if you use the master branch. Then runconf has a lot of examples on how to build it on various machines.

On Mon, Oct 2, 2017 at 11:45 AM, lwh1990 notifications@github.com wrote:

Hi, all I am a new user to ADIOS. I cannot figure out how to install when there is no configure file in the master version. Thanks.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/ornladios/ADIOS/issues/144, or mute the thread https://github.com/notifications/unsubscribe-auth/ADGMLZAw0V6f60k370F9NANJ1uCnkLdvks5soQUBgaJpZM4Pq1wi .

lwh1990 commented 6 years ago

Thanks. I have download 1.12.0 version and it occur many "conflicting types for 'MPI_XXX' " compiling error when I make it. How to fix that?

pnorbert commented 6 years ago

You probably have to specify the compiler sets, separately for the sequential build and for the parallel build. ADIOS builds both at once.

export MPICC=mpicc
export MPICXX=mpicxx
export MPIFC=mpif90
export CC=gcc
export CXX=g++
export FC=gfortran

On Mon, Oct 2, 2017 at 1:31 PM, lwh1990 notifications@github.com wrote:

Thanks. I have download 1.12.0 version and it occur many "conflicting types for 'MPI_XXX' " compiling error when I make it. How to fix that?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/ornladios/ADIOS/issues/144#issuecomment-333605496, or mute the thread https://github.com/notifications/unsubscribe-auth/ADGMLZWgFeKop-BsiWKNAHrhr73CO6Z7ks5soR3vgaJpZM4Pq1wi .

lwh1990 commented 6 years ago

Thanks. I have successfully installed it.