-
Notifications
You must be signed in to change notification settings - Fork 9
Description
@deajan
You have added this:
https://github.com/grke/burp/wiki/Performance-Tips#optional-compile-time-improvements
When compiling burp, you can optimize it for your actual processor architecture, and add a certain degree of parallelism that will give a little performance improvement (expect 5%).
Add the following CFLAGS to your configure statement
CFLAGS="-O2 -march=native -mtune=native -mfpmath=sse -floop-parallelize-all -ftree-parallelize-loops=4" ./configure
Be aware that using -march and -mtune will make your compiled burp work only with the actual processor you compiled with. Omit those parameters if you want to compile for other cpus.
This role compliles burp so I think it could help on default compilation.
What do you think?
Should I add these compile commands to the role?