Closed aghamir closed 4 years ago
Hi,
I don't understand because vmi_request_page_fault
symbol is valid function in Libvmi API, even in KVM-VMI/Libvmi fork on master
:
https://github.com/KVM-VMI/libvmi/blob/master/libvmi/libvmi.h#2190
So, maybe you have multiple Libvmi.so on your system, and the one which is choosen is too old to have that symbol defined ?
libvmi/python relies on pkg-config to determine how to find libvmi:
pkg-config --libs libvmi
This should tell you where it is located.
try to grep that symbol in your libvmi.so:
readelf -s | grep vmi_request_page_fault
Thanks a lot. It is exactly my issue
Dear @Wenzel , I compile and install
libvmi/python
usingsetup.py build
andsetup.py install
. Unfortunately when I import fromlibvmi
I face with this issue:To reproduce this issue:
pyenv
master
branch ofkvm-vmi/libvmi