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
Currently there's no way to disable helper builds, such as LAF or CMPLOG for AFL++. For some apps it takes a lot of time to make these builds.
We need to add something like --no-helper-builds or maybe even grant user full control over the builds to make with an option like --builds basic,asan,coverage.
Workaround
As a quick and dirty temporary workaround we can do the following.
Find the bugbane installation directory. If it was installed with pip install -e, then you'll find its installation in the place you've cloned the sources of bugbane to.
Otherwise, search for its installation place:
find / -xdev -type d -name bugbane
The installed bugbane package should reside either in site-packages or dist-packages depending on your distro and how you installed the package.
Then use sed like this, specifying your path to base_builders.py:
sed -i bugbane/tools/builder/builders/base_builders.py -e /BuildType.CMPLOG,/d -e /BuildType.LAF,/d
This will delete LAF and CMPLOG from the build tool.
The text was updated successfully, but these errors were encountered:
Currently there's no way to disable helper builds, such as LAF or CMPLOG for AFL++. For some apps it takes a lot of time to make these builds.
We need to add something like
--no-helper-builds
or maybe even grant user full control over the builds to make with an option like--builds basic,asan,coverage
.Workaround
As a quick and dirty temporary workaround we can do the following.
Find the bugbane installation directory. If it was installed with
pip install -e
, then you'll find its installation in the place you've cloned the sources of bugbane to.Otherwise, search for its installation place:
The installed bugbane package should reside either in site-packages or dist-packages depending on your distro and how you installed the package.
Then use sed like this, specifying your path to
base_builders.py
:This will delete LAF and CMPLOG from the build tool.
The text was updated successfully, but these errors were encountered: