Skip to content

Commit 6cef74a

Browse files
committed
requires libtool 2.5.4
1 parent f457814 commit 6cef74a

File tree

5 files changed

+17
-1
lines changed

5 files changed

+17
-1
lines changed

.github/workflows/mac_mpich.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ jobs:
3838
# gcc --version
3939
# which gfortran
4040
brew install automake autoconf libtool m4
41+
autoconf --version
42+
automake --version
43+
libtool --version
44+
m4 --version
4145
- name: Build MPICH
4246
run: |
4347
cd ${GITHUB_WORKSPACE}

.github/workflows/mac_openmpi.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ jobs:
3838
# gcc --version
3939
# which gfortran
4040
brew install automake autoconf libtool m4
41+
autoconf --version
42+
automake --version
43+
libtool --version
44+
m4 --version
4145
- name: Build OPENMPI
4246
run: |
4347
cd ${GITHUB_WORKSPACE}

.github/workflows/ubuntu_mpich.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ jobs:
3131
run: |
3232
sudo apt-get update
3333
sudo apt-get install automake autoconf libtool libtool-bin m4
34+
autoconf --version
35+
automake --version
36+
libtool --version
37+
m4 --version
3438
# install gfortran
3539
version=12
3640
sudo add-apt-repository ppa:ubuntu-toolchain-r/test

.github/workflows/ubuntu_openmpi.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ jobs:
3131
run: |
3232
sudo apt-get update
3333
sudo apt-get install automake autoconf libtool libtool-bin m4
34+
autoconf --version
35+
automake --version
36+
libtool --version
37+
m4 --version
3438
# install gfortran
3539
version=12
3640
sudo add-apt-repository ppa:ubuntu-toolchain-r/test

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ dnl AC_PROG_RANLIB
453453

454454
dnl libtool v2.4.6 was released in 2015-02-15
455455
dnl Travis CI only has v2.4.2
456-
LT_PREREQ([2.4.6])
456+
LT_PREREQ([2.5.4])
457457
dnl LT_INIT([dlopen disable-shared])
458458
dnl LT_INIT([dlopen])
459459
dnl LT_INIT([disable-shared]) # build without shared libraries

0 commit comments

Comments
 (0)