Package Details: libadios 1.13.1-1

Git Clone URL: https://aur.archlinux.org/libadios.git (read-only, click to copy)
Package Base: libadios
Description: ADIOS Adaptable IO system for simulations. The Adaptable IO System (ADIOS) provides a simple, flexible way for scientists to describe the data in their code that may need to be written, read, or processed outside of the running simulation.
Upstream URL: https://www.olcf.ornl.gov/center-projects/adios/
Licenses: BSD
Submitter: slizzered
Maintainer: slizzered
Last Packager: slizzered
Votes: 1
Popularity: 0.000000
First Submitted: 2015-08-30 22:33 (UTC)
Last Updated: 2019-01-10 20:16 (UTC)

Latest Comments

cocouf commented on 2021-08-31 19:07 (UTC)

I add troubles building ADIOS with newest compilers. MXML interface had problems, and non matching arguments also. I added parallel HDF5 as a dependency.

I propose the following changes :

 install=$pkgname.install
 license=('BSD')
 arch=('i686' 'x86_64')
-depends=('openmpi' 'python2' 'mxml' 'gcc-fortran')
+depends=('openmpi' 'python2' 'gcc-fortran' 'hdf5-openmpi')
 source=(
     http://users.nccs.gov/~pnorbert/adios-$pkgver.tar.gz
     )
@@ -26,8 +26,8 @@ prepare() {
 build() {
     cd $srcdir/adios-$pkgver
     autoreconf -f -i
-    CFLAGS="$CFLAGS -fPIC" ./configure --enable-static --enable-shared --prefix=/usr/ \
-        --with-mxml=/usr \
+    CFLAGS="$CFLAGS -fPIC" FCFLAGS="$FFLAGS -fallow-argument-mismatch" ./configure --enable-static --enable-shared --prefix=/usr/ \
+        --with-phdf5=/usr \
         --with-mpi=/usr \
         --with-zlib=/usr

slizzered commented on 2016-01-28 09:41 (UTC)

ok, added it now

AdamSimpson commented on 2016-01-26 16:31 (UTC) (edited on 2016-01-26 16:32 (UTC) by AdamSimpson)

Can gcc-fortran be added as a depdency? The build fails without it.