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
When I try to run the bztree pibench wrapper with pibench, I get the following error from within pmwcas: undefined reference 'shm_open'
It looks like while compiling pmwcas shared object, -lrt is linked at the beginning rather than at the end. For instance, this is the command run on my system to compile pmwcas:
If I move -lpthread -lnuma -lrt to the end and run the same command again the bztree pibench wrapper works fine. Maybe some fix is required in the CMakeLists.txt to link these libraries at the end rather than at the beginning.
The text was updated successfully, but these errors were encountered:
When I try to run the bztree pibench wrapper with pibench, I get the following error from within pmwcas:
undefined reference 'shm_open'
It looks like while compiling pmwcas shared object,
-lrt
is linked at the beginning rather than at the end. For instance, this is the command run on my system to compile pmwcas:If I move
-lpthread -lnuma -lrt
to the end and run the same command again the bztree pibench wrapper works fine. Maybe some fix is required in the CMakeLists.txt to link these libraries at the end rather than at the beginning.The text was updated successfully, but these errors were encountered: