diff options
author | Jason Evans <jasone@canonware.com> | 2009-12-29 08:09:15 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2009-12-29 08:09:15 (GMT) |
commit | 90895cf85900beaf39d36dbd327c33c9a9583668 (patch) | |
tree | 1c115bf750378e9eaa1403aa2cc044b3e3968b61 /jemalloc/INSTALL | |
parent | bca042dfeb6a5a668a8c0b275cf4faa7e888290a (diff) | |
download | jemalloc-90895cf85900beaf39d36dbd327c33c9a9583668.zip jemalloc-90895cf85900beaf39d36dbd327c33c9a9583668.tar.gz jemalloc-90895cf85900beaf39d36dbd327c33c9a9583668.tar.bz2 |
Add --with-jemalloc-prefix, which supports API mangling.
Rename jemalloc_options-->malloc_options and jemalloc_message-->malloc_message.
Diffstat (limited to 'jemalloc/INSTALL')
-rw-r--r-- | jemalloc/INSTALL | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/jemalloc/INSTALL b/jemalloc/INSTALL index 5ed4ee5..9e42ce4 100644 --- a/jemalloc/INSTALL +++ b/jemalloc/INSTALL @@ -26,6 +26,11 @@ any of the following arguments (not a definitive list) to 'configure': Embed one or more library paths, so that Crux's internal shared library can find the libraries it is linked to. This works only on ELF-based systems. +--with-jemalloc-prefix=<prefix> + Prefix all public APIs with <prefix>, so that, for example, malloc() + becomes <prefix>malloc(). This makes it possible to use jemalloc at the + same time as the system allocator. + --enable-debug Enable assertions and validation code. This incurs a substantial performance hit, but is very useful during application development. |