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
Optimize evmone_precompiles (or at least its hash functions) even for debug builds. Source code coverage reports for these are not very important and there are not many branches in the code anyway. But using not optimized hash functions slows down testing by a lot.
Use CMake's target_compile_options or set_source_files_properties and generator expressions to match compilers and build type.
The text was updated successfully, but these errors were encountered:
Optimize
evmone_precompiles
(or at least its hash functions) even for debug builds. Source code coverage reports for these are not very important and there are not many branches in the code anyway. But using not optimized hash functions slows down testing by a lot.Use CMake's
target_compile_options
orset_source_files_properties
and generator expressions to match compilers and build type.The text was updated successfully, but these errors were encountered: