Skip to content

Commit

Permalink
Add alias for support of IBM Power architecture (#348)
Browse files Browse the repository at this point in the history
Execution of `apt-get install hdf5-tools` on a Power system running Ubuntu 16.04 does not seem to install un-versioned .so files.  The edit in this commit allows for `Pkg.build("HDF5")` to be executed successfully, and for HDF5.jl to work subsequently.
  • Loading branch information
AndyGreenwell authored and tkelman committed Dec 29, 2016
1 parent 9bdaab3 commit 9966858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ using BinDeps, Compat
@BinDeps.setup

if is_linux()
hdf5 = library_dependency("libhdf5", aliases = ["libhdf5", "libhdf5_serial", "libhdf5_openmpi", "libhdf5_mpich"])
hdf5 = library_dependency("libhdf5", aliases = ["libhdf5", "libhdf5_serial", "libhdf5_serial.so.10", "libhdf5_openmpi", "libhdf5_mpich"])
provides(AptGet, "hdf5-tools", hdf5)
provides(Pacman, "hdf5", hdf5)
provides(Yum, "hdf5", hdf5)
Expand Down

0 comments on commit 9966858

Please sign in to comment.