unikraft / loupe

Loupe: Syscall Usage Analysis Tool
Other
25 stars 3 forks source link

Error : Binary static analysis results are invalid #17

Closed JeniRotaru closed 4 months ago

JeniRotaru commented 4 months ago

Running ./loupe generate -b -db ../loupedb -a "nginx" -w "wrk" -d ./Dockerfile.nginx (same command as in the example) for a Nginx app with wrk, after I passed --disable-static option to explorer.py in Dockerfile.nginx, returns :

1 warning found (use --debug to expand):

  • JSONArgsRecommended: JSON arguments recommended for CMD to prevent unintended behavior related to OS signals (line 25) [I] Running dynamic analysis in the container (2 replicas)... [I] Sanitizing replicas outputs... [E] Binary static analysis results are invalid (no results!)
gaulthiergain commented 4 months ago

Lief recently updated the version to 0.15 leading to incompatibilities. The commit 7821b7a fixes this issue.

JeniRotaru commented 4 months ago

Thank you!