You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that the path to the libevent lib and include is not properly inserted.
Interesting output from configure:
checking for libevent in... /home/user/install/libevent-2.1.10/include and /home/user/install/libevent-2.1.10/lib
looking for header in /home/user/install/libevent-2.1.10/include
checking event.h usability... yes
checking event.h presence... yes
checking for event.h... yes
checking for library containing event_config_new... -levent
checking for evthread_set_lock_callbacks in -levent... no
configure: WARNING: External libevent does not have thread support
configure: WARNING: PMIx_unit requires libevent to be compiled with
configure: WARNING: thread support enabled
checking will libevent support be built... no
checking --with-pmix value... sanity check ok (/home/user/install/pmix_master/include)
checking libpmix.* in /home/user/install/pmix_master/lib64... not found
checking libpmix.* in /home/user/install/pmix_master/lib... found
checking for PMIx version file... found
checking version 4x... found
checking pmix.h usability... yes
checking pmix.h presence... yes
checking for pmix.h... yes
checking for PMIx_Init... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: executing depfiles commands
config.status: executing libtool commands
libevent has been configured and installed based on the following command:
I did not really have the time to investigate further than that. config/pmix_unit_setup_libevent.m4 seems to be looking for evthread_set_lock_callbacks and do not find it, however, it is defined in the lib:
$ nm libevent.so | grep evthread_set_lock_callbacks
0000000000027628 T evthread_set_lock_callbacks
The text was updated successfully, but these errors were encountered:
Version
master@304ecf001d1ec4ca02e97b03ff04868b3e8c31cf on Ubuntu Eoan both arm64 and x86_64
Description of the problem
When trying to compile the code, I get the following error:
Note that the path to the libevent lib and include is not properly inserted.
Interesting output from configure:
libevent has been configured and installed based on the following command:
PMIx was configured with the following command:
I did not really have the time to investigate further than that.
config/pmix_unit_setup_libevent.m4
seems to be looking forevthread_set_lock_callbacks
and do not find it, however, it is defined in the lib:The text was updated successfully, but these errors were encountered: