diff options
author | Jason Evans <je@facebook.com> | 2010-03-03 23:48:20 (GMT) |
---|---|---|
committer | Jason Evans <je@facebook.com> | 2010-03-04 00:38:07 (GMT) |
commit | cfeccd34a37a83804ed56e4562103a6e6f6cabec (patch) | |
tree | c4a8b90a16e6142cb0c301b644f28d00a8cbbd72 /jemalloc/INSTALL | |
parent | 9df0215f9b92aec3640b945cbdce7b34bcbff011 (diff) | |
download | jemalloc-cfeccd34a37a83804ed56e4562103a6e6f6cabec.zip jemalloc-cfeccd34a37a83804ed56e4562103a6e6f6cabec.tar.gz jemalloc-cfeccd34a37a83804ed56e4562103a6e6f6cabec.tar.bz2 |
Fix various config/build issues.
Don't look for a shared libunwind if --with-static-libunwind is
specified.
Set SONAME when linking the shared libjemalloc.
Add DESTDIR support.
Add install_{include,lib/man} build targets.
Clean up compiler flag configuration.
Diffstat (limited to 'jemalloc/INSTALL')
-rw-r--r-- | jemalloc/INSTALL | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/jemalloc/INSTALL b/jemalloc/INSTALL index e8d0b7a..6157ae5 100644 --- a/jemalloc/INSTALL +++ b/jemalloc/INSTALL @@ -151,9 +151,11 @@ PATH="?" === Advanced compilation ======================================================= -To run integrated regression tests, type: +To install only parts of jemalloc, use the following targets: - make check + install_include + install_lib + install_man To clean up build results to varying degrees, use the following make targets: @@ -175,6 +177,10 @@ LIBDIR="?" MANDIR="?" Use this as the installation prefix for man pages. +DESTDIR="?" + Prepend DESTDIR to INCLUDEDIR, LIBDIR, and MANDIR. This is useful when + installing to a different path than was specified via --prefix. + CC="?" Use this to invoke the C compiler. |