mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-10 05:37:06 +00:00
malloc/free implementation, and m_replacemalloc with the stuff for the tools that replace malloc with their own version. Previously these two areas of functionality were mixed up somewhat. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3648
19 lines
415 B
Makefile
19 lines
415 B
Makefile
include $(top_srcdir)/Makefile.tool.am
|
|
|
|
SUBDIRS += hp2ps
|
|
|
|
val_PROGRAMS = vgtool_massif.so vgpreload_massif.so
|
|
|
|
vgtool_massif_so_SOURCES = ms_main.c
|
|
vgtool_massif_so_LDFLAGS = -shared
|
|
|
|
vgpreload_massif_so_SOURCES =
|
|
vgpreload_massif_so_DEPENDENCIES = \
|
|
$(LIBREPLACEMALLOC)
|
|
vgpreload_massif_so_LDFLAGS = -shared -Wl,-z,interpose,-z,initfirst \
|
|
-Wl,--whole-archive \
|
|
$(LIBREPLACEMALLOC) \
|
|
-Wl,--no-whole-archive
|
|
|
|
|