aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@redhat.com>2013-03-17 19:41:04 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-05-29 07:57:41 -0400
commita1c7c9e7e989c3cf881f72f5d19010fd9890b115 (patch)
treecd6d86925b0aa8846251e09266bc3a651503e736 /tools/perf
parentc3cf8368452d2799296ce4244898ccb66b93686d (diff)
perf tools: Move stdlib check config into config/Makefile
Moving stdlib check config into config/Makefile. Signed-off-by: Jiri Olsa <jolsa@redhat.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Sam Ravnborg <sam@ravnborg.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/r/1369398928-9809-15-git-send-email-jolsa@redhat.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/Makefile18
-rw-r--r--tools/perf/config/Makefile18
2 files changed, 18 insertions, 18 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index e4d99c485d6e..9276576addc6 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -544,24 +544,6 @@ ifeq ($(NO_PERF_REGS),0)
544 endif 544 endif
545endif 545endif
546 546
547ifndef NO_STRLCPY
548 ifeq ($(call try-cc,$(SOURCE_STRLCPY),,-DHAVE_STRLCPY),y)
549 BASIC_CFLAGS += -DHAVE_STRLCPY
550 endif
551endif
552
553ifndef NO_ON_EXIT
554 ifeq ($(call try-cc,$(SOURCE_ON_EXIT),,-DHAVE_ON_EXIT),y)
555 BASIC_CFLAGS += -DHAVE_ON_EXIT
556 endif
557endif
558
559ifndef NO_BACKTRACE
560 ifeq ($(call try-cc,$(SOURCE_BACKTRACE),,-DBACKTRACE_SUPPORT),y)
561 BASIC_CFLAGS += -DBACKTRACE_SUPPORT
562 endif
563endif
564
565ifndef NO_LIBNUMA 547ifndef NO_LIBNUMA
566 FLAGS_LIBNUMA = $(ALL_CFLAGS) $(ALL_LDFLAGS) -lnuma 548 FLAGS_LIBNUMA = $(ALL_CFLAGS) $(ALL_LDFLAGS) -lnuma
567 ifneq ($(call try-cc,$(SOURCE_LIBNUMA),$(FLAGS_LIBNUMA),libnuma),y) 549 ifneq ($(call try-cc,$(SOURCE_LIBNUMA),$(FLAGS_LIBNUMA),libnuma),y)
diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile
index 317dafee92e4..8c0e43f16ea0 100644
--- a/tools/perf/config/Makefile
+++ b/tools/perf/config/Makefile
@@ -361,3 +361,21 @@ else
361 endif 361 endif
362 endif 362 endif
363endif 363endif
364
365ifndef NO_STRLCPY
366 ifeq ($(call try-cc,$(SOURCE_STRLCPY),,-DHAVE_STRLCPY),y)
367 BASIC_CFLAGS += -DHAVE_STRLCPY
368 endif
369endif
370
371ifndef NO_ON_EXIT
372 ifeq ($(call try-cc,$(SOURCE_ON_EXIT),,-DHAVE_ON_EXIT),y)
373 BASIC_CFLAGS += -DHAVE_ON_EXIT
374 endif
375endif
376
377ifndef NO_BACKTRACE
378 ifeq ($(call try-cc,$(SOURCE_BACKTRACE),,-DBACKTRACE_SUPPORT),y)
379 BASIC_CFLAGS += -DBACKTRACE_SUPPORT
380 endif
381endif