diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-10-29 22:32:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-29 22:32:47 +0200 |
| commit | 0e47d1269cc660d2b1451e76375b2d3545ce66f4 (patch) | |
| tree | 27c958e5ef3cd147625112a82626624d51fd6fe5 /rebuild_wrappers.py | |
| parent | 7dc5359c2b10521696e7d251627eff029d53ee28 (diff) | |
| download | box64-0e47d1269cc660d2b1451e76375b2d3545ce66f4.tar.gz box64-0e47d1269cc660d2b1451e76375b2d3545ce66f4.zip | |
Malloc override (#437)
* Add some malloc override mecanism, but missing c++ function overriding * Add c++ new/delete redirection too * Added support for libtbbmalloc_proxy
Diffstat (limited to 'rebuild_wrappers.py')
| -rwxr-xr-x | rebuild_wrappers.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rebuild_wrappers.py b/rebuild_wrappers.py index f966c179..8761351e 100755 --- a/rebuild_wrappers.py +++ b/rebuild_wrappers.py @@ -389,7 +389,9 @@ def readFiles(files: Iterable[Filename]) -> Tuple[JumbledGlobals, JumbledRedirec or match("sdl1net", "sdl2net") \ or match("sdl1ttf", "sdl2ttf") \ or match("libGL", "libEGL") \ - or match("libc", "tcmallocminimal"): + or match("libc", "tcmallocminimal") \ + or match("libc", "tbbmallocproxy") \ + or match("tcmallocminimal", "tbbmallocproxy"): continue # Note: this test is very (too) simple. If it ever raises, comment |