[profiler] Don't run the test suite when the profiler is disabled.
[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 !BITCODE
18 prof_shlibs = \
19         libmono-profiler-aot.la \
20         libmono-profiler-iomap.la \
21         libmono-profiler-log.la
22 endif
23
24 if HAVE_VTUNE
25 vtune_stlibs = libmono-profiler-vtune-static.la
26 if !BITCODE
27 vtune_shlibs = libmono-profiler-vtune.la
28 endif
29 endif
30
31 lib_LTLIBRARIES = \
32         $(prof_shlibs) \
33         libmono-profiler-aot-static.la \
34         libmono-profiler-iomap-static.la \
35         libmono-profiler-log-static.la \
36         $(vtune_shlibs) \
37         $(vtune_stlibs)
38
39 if PLATFORM_DARWIN
40 prof_ldflags = -Wl,-undefined -Wl,suppress -Wl,-flat_namespace
41 endif
42
43 if PLATFORM_ANDROID
44 prof_ldflags = -avoid-version
45 endif
46
47 # FIXME fix the profiler tests to work with coop.
48 if !ENABLE_COOP
49 if !NACL_CODEGEN
50 check_targets = testlog
51 endif
52 endif
53
54 endif
55 endif
56 endif
57
58 # The log profiler uses eglib functions, so it needs to be linked against
59 # libeglib in shared mode, but not in static mode, since that would
60 # leads to duplicate symbols when it is linked into an app which
61 # also uses eglib (e.g. the runtime). Automake doesn't support this
62 # functionality, so create a separate static version of the library.
63
64 libmono_profiler_aot_la_SOURCES = mono-profiler-aot.c
65 libmono_profiler_aot_la_LIBADD = $(GLIB_LIBS) $(LIBICONV)
66 libmono_profiler_aot_la_LDFLAGS = $(prof_ldflags)
67 libmono_profiler_aot_static_la_SOURCES = mono-profiler-aot.c
68 libmono_profiler_aot_static_la_LDFLAGS = -static
69
70 libmono_profiler_iomap_la_SOURCES = mono-profiler-iomap.c
71 libmono_profiler_iomap_la_LIBADD = $(GLIB_LIBS) $(LIBICONV)
72 libmono_profiler_iomap_la_LDFLAGS = $(prof_ldflags)
73 libmono_profiler_iomap_static_la_SOURCES = mono-profiler-iomap.c
74 libmono_profiler_iomap_static_la_LDFLAGS = -static
75
76 libmono_profiler_log_la_SOURCES = proflog.c
77 libmono_profiler_log_la_LIBADD = $(GLIB_LIBS) $(Z_LIBS)
78 libmono_profiler_log_la_LDFLAGS = $(prof_ldflags)
79 libmono_profiler_log_static_la_SOURCES = proflog.c
80 libmono_profiler_log_static_la_LDFLAGS = -static
81
82 if HAVE_VTUNE
83 libmono_profiler_vtune_la_SOURCES = mono-profiler-vtune.c
84 libmono_profiler_vtune_la_CFLAGS = $(VTUNE_CFLAGS)
85 libmono_profiler_vtune_la_LIBADD = $(VTUNE_LIBS) $(GLIB_LIBS) $(LIBICONV)
86 libmono_profiler_vtune_la_LDFLAGS = $(prof_ldflags)
87 libmono_profiler_vtune_static_la_SOURCES = mono-profiler-vtune.c
88 libmono_profiler_vtune_static_la_LDFLAGS = -static
89 endif
90
91 mprof_report_SOURCES = decode.c
92 mprof_report_LDADD = $(Z_LIBS) $(GLIB_LIBS) $(LIBICONV)
93
94 PLOG_TESTS_SRC=test-alloc.cs test-busy.cs test-monitor.cs test-excleave.cs \
95         test-heapshot.cs test-traces.cs
96 PLOG_TESTS=$(PLOG_TESTS_SRC:.cs=.exe)
97
98 CLASS=$(mcs_topdir)/class/lib/$(DEFAULT_PROFILE)
99
100 with_mono_path = MONO_PATH=$(CLASS)
101
102 RUNTIME = $(with_mono_path) $(top_builddir)/runtime/mono-wrapper
103 MCS = $(RUNTIME) $(mcs_topdir)/class/lib/build/mcs.exe -unsafe -nowarn:0162 -nowarn:0168 -nowarn:0219 -debug
104
105 %.exe: %.cs
106         $(MCS) -out:$@ $<
107
108 testlog: $(PLOG_TESTS)
109         $(with_mono_path) perl $(srcdir)/ptestrunner.pl $(top_builddir)
110
111 check-local: $(check_targets)
112
113 suppressiondir = $(datadir)/mono-$(API_VER)/mono/profiler
114 suppression_DATA = mono-profiler-log.suppression
115
116 EXTRA_DIST=utils.c utils.h proflog.h \
117         $(PLOG_TESTS_SRC) ptestrunner.pl \
118         $(suppression_DATA)