Merge pull request #4967 from kumpera/profiler-arg-cleanup
[mono.git] / mono / profiler / Makefile.am
1 if HAVE_ZLIB
2 Z_LIBS= -lz
3 else
4 Z_LIBS=
5 endif
6
7 AM_CPPFLAGS = \
8         -DSUPPRESSION_DIR=\""$(datadir)/mono-$(API_VER)/mono/profiler"\"        \
9         -I$(top_srcdir)         \
10         $(GLIB_CFLAGS)
11
12 if !HOST_WIN32
13 if !DISABLE_LIBRARIES
14 if !DISABLE_PROFILER
15 bin_PROGRAMS = mprof-report
16
17 if HAVE_VTUNE
18 vtune_libs = libmono-profiler-vtune.la libmono-profiler-vtune-static.la
19 endif
20
21 lib_LTLIBRARIES = \
22         libmono-profiler-aot.la \
23         libmono-profiler-aot-static.la \
24         libmono-profiler-iomap.la \
25         libmono-profiler-iomap-static.la \
26         libmono-profiler-log.la \
27         libmono-profiler-log-static.la \
28         $(vtune_libs)
29
30 suppressiondir = $(datadir)/mono-$(API_VER)/mono/profiler
31 suppression_DATA = mono-profiler-log.suppression
32
33 if PLATFORM_DARWIN
34 if BITCODE
35 prof_ldflags = -no-undefined
36 else
37 prof_ldflags = -Wl,-undefined -Wl,suppress -Wl,-flat_namespace
38 endif
39 endif
40
41 if TARGET_OSX
42 libmono_dep =
43 else
44 libmono_dep = $(monodir)/mono/mini/$(LIBMONO_LA)
45 endif
46
47 if PLATFORM_ANDROID
48 prof_ldflags = -avoid-version
49 endif
50
51 # FIXME fix the profiler tests to work with coop.
52 if !ENABLE_COOP
53 check_targets = testlog
54 endif
55
56 endif
57 endif
58 endif
59
60 monodir=$(top_builddir)
61
62 # The log profiler uses eglib functions, so it needs to be linked against
63 # libeglib in shared mode, but not in static mode, since that would
64 # leads to duplicate symbols when it is linked into an app which
65 # also uses eglib (e.g. the runtime). Automake doesn't support this
66 # functionality, so create a separate static version of the library.
67
68 libmono_profiler_aot_la_SOURCES = aot.c
69 libmono_profiler_aot_la_LIBADD =  $(libmono_dep) $(GLIB_LIBS) $(LIBICONV)
70 libmono_profiler_aot_la_LDFLAGS = $(prof_ldflags)
71 libmono_profiler_aot_static_la_SOURCES = aot.c
72 libmono_profiler_aot_static_la_LDFLAGS = -static
73
74 libmono_profiler_iomap_la_SOURCES = iomap.c
75 libmono_profiler_iomap_la_LIBADD = $(libmono_dep) $(GLIB_LIBS) $(LIBICONV)
76 libmono_profiler_iomap_la_LDFLAGS = $(prof_ldflags)
77 libmono_profiler_iomap_static_la_SOURCES = iomap.c
78 libmono_profiler_iomap_static_la_LDFLAGS = -static
79
80 libmono_profiler_log_la_SOURCES = log.c log-args.c
81 libmono_profiler_log_la_LIBADD = $(libmono_dep) $(GLIB_LIBS) $(Z_LIBS)
82 libmono_profiler_log_la_LDFLAGS = $(prof_ldflags)
83 libmono_profiler_log_static_la_SOURCES = log.c log-args.c
84 libmono_profiler_log_static_la_LDFLAGS = -static
85
86 if HAVE_VTUNE
87 libmono_profiler_vtune_la_SOURCES = vtune.c
88 libmono_profiler_vtune_la_CFLAGS = $(VTUNE_CFLAGS)
89 libmono_profiler_vtune_la_LIBADD = $(VTUNE_LIBS) $(LIBMONO) $(GLIB_LIBS) $(LIBICONV)
90 libmono_profiler_vtune_la_LDFLAGS = $(prof_ldflags)
91 libmono_profiler_vtune_static_la_SOURCES = vtune.c
92 libmono_profiler_vtune_static_la_LDFLAGS = -static
93 libmono_profiler_vtune_static_la_CFLAGS = $(VTUNE_CFLAGS)
94 libmono_profiler_vtune_static_la_LIBADD = $(VTUNE_LIBS)
95 endif
96
97 mprof_report_SOURCES = mprof-report.c
98 mprof_report_LDADD = $(Z_LIBS) $(GLIB_LIBS) $(LIBICONV)
99
100 PLOG_TESTS_SRC=test-alloc.cs test-busy.cs test-monitor.cs test-excleave.cs \
101         test-heapshot.cs test-traces.cs
102 PLOG_TESTS=$(PLOG_TESTS_SRC:.cs=.exe)
103
104 CLASS=$(mcs_topdir)/class/lib/$(DEFAULT_PROFILE)
105
106 TOOLS_RUNTIME = MONO_PATH=$(mcs_topdir)/class/lib/build $(top_builddir)/runtime/mono-wrapper
107 MCS = $(TOOLS_RUNTIME) $(CSC) -lib:$(CLASS) -unsafe -nologo -noconfig -nowarn:0162 -nowarn:0168 -nowarn:0219 -debug:portable
108
109 %.exe: %.cs
110         $(MCS) -out:$@ $<
111
112 testlog: $(PLOG_TESTS)
113         MONO_PATH=$(CLASS) perl $(srcdir)/ptestrunner.pl $(top_builddir)
114
115 check-local: $(check_targets)
116
117 EXTRA_DIST=log.h \
118         aot.h \
119         $(PLOG_TESTS_SRC) \
120         ptestrunner.pl \
121         $(suppression_DATA)