-
-
Notifications
You must be signed in to change notification settings - Fork 425
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
About crash on CentOS #9
Comments
Fixed. (and deleted the old ticket due to spam) |
ghost
mentioned this issue
May 15, 2012
Open
This was referenced Sep 3, 2014
kannibalox
pushed a commit
to kannibalox/rtorrent
that referenced
this issue
Sep 12, 2023
kannibalox
pushed a commit
to kannibalox/rtorrent
that referenced
this issue
Sep 12, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See http://libtorrent.rakshasa.no/ticket/2115 for details.
In gdb wee may to see:
e.q. LT_SMP_CACHE_BYTES is setted to 1, this is a invalid value.
And yes, in config.h (after configure) we may to see:
For avoid this you must remove the superfluous comma in files libtorrent/scripts/common.m4 and rtorrent/scripts/common.m4, e.q. replace lines
AC_DEFINE(LT_SMP_CACHE_BYTES, 128, Largest L1 cache size we know of, should work on all archs.)
to
AC_DEFINE(LT_SMP_CACHE_BYTES, 128, Largest L1 cache size we know of)
and all will be OK.
The text was updated successfully, but these errors were encountered: