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
liblkl.so depends on some other libraries for its host-specific stuff, in your case it needs librt.
The way liblkl.so is currently build does not include these dependencies, they are only added for liblkl-hijack.so. If you want to use liblkl.so independently, you have to link with -lrt -lpthread and probably -ldl. Just add those to line 55 of the Makefile and ctypes should pick them up automatically (see line 60).
In my attempt to fuzz the kernel X.509 API (#58), I've ran into an interesting bug. I'm using the following patch:
And it all compiles ok, but when I try to load
liblkl.so
, no bueno:Here's the complete build log:
build.log.txt
The text was updated successfully, but these errors were encountered: