Replies: 1 comment 1 reply
-
By default MPICH only installs a |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to build a HPC cluster with MPICH and Ubuntu 20.04 OS. Cause there is a bug at the default MPICH version (3.3.2) on Ubuntu 20.04(https://jira.lsstcorp.org/browse/DM-24746), i have to upgrade it. And as the NONMEM software I am using requires the static library file libmpich.a, I need to generate this file during compilation.
But when i using GNU to compile MPICH4.1.1 on Ubuntu 20.04, with flag --enable-static but no libmpich.a file generated,here is the configure command:
./configure --prefix=/opt/mpich-4.1.1 CFLAGS="-m64" FFLAGS="-m64" --enable-f90 --enable-timer-type=gettimeofday --enable-static=yes 2>&1 | tee c.txt
Is there something wrong with my command? Or does anyone know how to obtain the libmpich.a file? Thank you very much!
Beta Was this translation helpful? Give feedback.
All reactions