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
I'm trying to build yara-python with profiling support.
The command python setup.py build --enable-profiling succeeds, but the resulting extension fails with "libyara compiled without profiling support" message when calling profiling_info() on a rules object.
yara-python.c seems to be outdated with respect to libyara in the profiling support.
First of all the preprocessor definition is PROFILING_ENABLED when it should be YR_PROFILING_ENABLED
However after changing that I got errors about clock_ticks not being member of YR_RULE and YR_STRING.
I saw in the code that clock_ticks was renamed as time_cost at some point, but later it was removed.
The only way I was able to compile the extension with the support for profiling was going back to version 3.11 in both yara-python and libyara, and also do some changes in the yara-python.c code (rename clock_ticks as time_cost and commenting out the addition of time_costs from YR_STRINGs since it seems to be member of YR_RULE only in this version).
So my modified yara-python.c at line 1619 looks like this:
My first question is if I'm losing something because of not adding the YR_STRINGs time costs, since I don't know what they represented.
The second is if it would need too much rework in yara-python.c to support profiling with the latest libyara code.
Looking at the code, it seems that profiling information is now stored in "scanners", and I don't see any mention of scanners in yara-python.c.
The text was updated successfully, but these errors were encountered:
I'm trying to build yara-python with profiling support.
The command
python setup.py build --enable-profiling
succeeds, but the resulting extension fails with "libyara compiled without profiling support" message when callingprofiling_info()
on a rules object.yara-python.c
seems to be outdated with respect to libyara in the profiling support.First of all the preprocessor definition is
PROFILING_ENABLED
when it should beYR_PROFILING_ENABLED
However after changing that I got errors about
clock_ticks
not being member ofYR_RULE
andYR_STRING
.I saw in the code that
clock_ticks
was renamed astime_cost
at some point, but later it was removed.The only way I was able to compile the extension with the support for profiling was going back to version 3.11 in both
yara-python
andlibyara
, and also do some changes in theyara-python.c
code (renameclock_ticks
astime_cost
and commenting out the addition oftime_cost
s fromYR_STRING
s since it seems to be member ofYR_RULE
only in this version).So my modified yara-python.c at line 1619 looks like this:
My first question is if I'm losing something because of not adding the
YR_STRING
s time costs, since I don't know what they represented.The second is if it would need too much rework in
yara-python.c
to support profiling with the latestlibyara
code.Looking at the code, it seems that profiling information is now stored in "scanners", and I don't see any mention of scanners in
yara-python.c
.The text was updated successfully, but these errors were encountered: