Re: [OMPI users] openmpi compile failure

2022-09-27 Thread Zilore Mumba via users
I am seeking help compiling openmpi. My compilation and installation output is in dropbox at the link below https://www.dropbox.com/s/1a9tv5lnwicnhds/ompi-output.tar.bz2?dl=0 Help will be appreciated. On Fri, Sep 2, 2022 at 8:28 AM Zilore Mumba wrote: > I am seeking help compiling mpi, output of

Re: [OMPI users] openmpi compile failure

2022-09-27 Thread Jeff Squyres (jsquyres) via users
Can you re-try with the latest Open MPI v4.1.x release (v4.1.4)? There have been many bug fixes since v4.1.0. -- Jeff Squyres jsquy...@cisco.com From: users on behalf of Zilore Mumba via users Sent: Tuesday, September 27, 2022 5:10 AM To: users@lists.open-mpi

Re: [OMPI users] openmpi compile failure

2022-09-27 Thread Zilore Mumba via users
Thanks Jeff, I have tried with openmpi-4.1.4, but I still get the same error. The main error being ../../../../../../opal/mca/event/libevent2022/libevent/signal.c:135:14: error: ‘NSIG’ undeclared (first use in this function); did you mean ‘_NSIG’? int ncaught[NSIG]; ^~~~

Re: [OMPI users] openmpi compile failure

2022-09-27 Thread Jeff Squyres (jsquyres) via users
I'm not sure why that would happen; it does sound like some kind of misconfiguration on your system. If I compile this trivial application on Ubuntu 18.04: #include #include int main() { printf("NSIG is %d\n", NSIG); return 0; } Like this: $ gcc foo.c -o foo && ./foo NSIG is

Re: [OMPI users] openmpi compile failure

2022-09-27 Thread Zilore Mumba via users
Thanks once again for that insight Jeff. Indeed it is my configuration. When I run the code snippet you sent I get exactly the result you have " NSIG is 65". So I have to ensure my configure is pointing to the right libraries. On Wed, Sep 28, 2022 at 2:02 AM Jeff Squyres (jsquyres) wrote: > I'm