-
i want to support cef. can you give some advice about that. what need to do? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The issue with libcef (and everything chrome based) is libtcmalloc that is staticaly linked in it. Those libs redirect malloc/free libc operators. This needs to be done before loading any libs, but cannot really be done in box64 case because of the wrapping of the libs. I have started working on that, with two branches: |
Beta Was this translation helpful? Give feedback.
The issue with libcef (and everything chrome based) is libtcmalloc that is staticaly linked in it. Those libs redirect malloc/free libc operators. This needs to be done before loading any libs, but cannot really be done in box64 case because of the wrapping of the libs.
I have started working on that, with two branches:
malloc_override
andembrace_malloc_override
, trying 2 different strategies. For now, themalloc_override
is the most promissing, so I suggest you start here.