diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-06-24 23:01:23 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-06-24 23:01:23 +0000 |
commit | 0a5fe2140db2e6688a7ef42031a21d8293038715 (patch) | |
tree | c4a543636157a7e148ef789201f0f6373f8b548e /src/Makefile | |
parent | c4def13f8bc6631add3b10bb84783acca72795ae (diff) | |
download | vim-git-0a5fe2140db2e6688a7ef42031a21d8293038715.tar.gz |
updated for version 7.0092
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index f27e20d1e..03ee7c28b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -533,6 +533,14 @@ LINT_OPTIONS = -beprxzF #PROFILE_CFLAGS = -pg -g #PROFILE_LIBS = -pg +# MEMORY LEAK DETECTION +# Requires installing the ccmalloc library. +# Configuration is in the .ccmalloc file. +# Doesn't work very well, since memory linked to from global variables +# (indirectly) is also marked as leaked memory. +#PROFILE_CFLAGS = -DEXITFREE +#PROFILE_LIBS = -lccmalloc + ##################################################### ### Specific systems, check if yours is listed! ### {{{ ##################################################### |