diff options
author | Jason Evans <je@facebook.com> | 2010-09-21 02:20:48 (GMT) |
---|---|---|
committer | Jason Evans <je@facebook.com> | 2010-09-21 02:20:48 (GMT) |
commit | 355b438c854227bbf8185cb7a3ce247d271a842e (patch) | |
tree | a173a96412a2c5ac1f02ac6d3a3f1c188eeefe48 /jemalloc/INSTALL | |
parent | 6a0d2918ceede07a36a50389c1a8a95755b0a7f6 (diff) | |
download | jemalloc-355b438c854227bbf8185cb7a3ce247d271a842e.zip jemalloc-355b438c854227bbf8185cb7a3ce247d271a842e.tar.gz jemalloc-355b438c854227bbf8185cb7a3ce247d271a842e.tar.bz2 |
Fix compiler warnings.
Add --enable-cc-silence, which can be used to silence harmless warnings.
Fix an aliasing bug in ckh_pointer_hash().
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 a895743..1bf5158 100644 --- a/jemalloc/INSTALL +++ b/jemalloc/INSTALL @@ -40,6 +40,11 @@ any of the following arguments (not a definitive list) to 'configure': versions of jemalloc can coexist in the same installation directory. For example, libjemalloc.so.0 becomes libjemalloc<suffix>.so.0. +--enable-cc-silence + Enable code that silences unuseful compiler warnings. This is helpful when + trying to tell serious warnings from those due to compiler limitations, but + it potentially incurs a performance penalty. + --enable-debug Enable assertions and validation code. This incurs a substantial performance hit, but is very useful during application development. |