|
@@ -5,7 +5,7 @@ ifeq ($(MAKECMDGOALS),)
|
|
|
# no target specified, trigger the whole suite
|
|
|
all:
|
|
|
@echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile
|
|
|
- @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf
|
|
|
+ @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf SET_PARALLEL=1 SET_O=1
|
|
|
else
|
|
|
# run only specific test over 'Makefile'
|
|
|
%:
|
|
@@ -13,6 +13,26 @@ else
|
|
|
endif
|
|
|
else
|
|
|
PERF := .
|
|
|
+PERF_O := $(PERF)
|
|
|
+O_OPT :=
|
|
|
+
|
|
|
+ifneq ($(O),)
|
|
|
+ FULL_O := $(shell readlink -f $(O) || echo $(O))
|
|
|
+ PERF_O := $(FULL_O)
|
|
|
+ ifeq ($(SET_O),1)
|
|
|
+ O_OPT := 'O=$(FULL_O)'
|
|
|
+ endif
|
|
|
+ K_O_OPT := 'O=$(FULL_O)'
|
|
|
+endif
|
|
|
+
|
|
|
+PARALLEL_OPT=
|
|
|
+ifeq ($(SET_PARALLEL),1)
|
|
|
+ cores := $(shell (getconf _NPROCESSORS_ONLN || egrep -c '^processor|^CPU[0-9]' /proc/cpuinfo) 2>/dev/null)
|
|
|
+ ifeq ($(cores),0)
|
|
|
+ cores := 1
|
|
|
+ endif
|
|
|
+ PARALLEL_OPT="-j$(cores)"
|
|
|
+endif
|
|
|
|
|
|
# As per kernel Makefile, avoid funny character set dependencies
|
|
|
unexport LC_ALL
|
|
@@ -156,11 +176,11 @@ test_make_doc := $(test_ok)
|
|
|
test_make_help_O := $(test_ok)
|
|
|
test_make_doc_O := $(test_ok)
|
|
|
|
|
|
-test_make_python_perf_so := test -f $(PERF)/python/perf.so
|
|
|
+test_make_python_perf_so := test -f $(PERF_O)/python/perf.so
|
|
|
|
|
|
-test_make_perf_o := test -f $(PERF)/perf.o
|
|
|
-test_make_util_map_o := test -f $(PERF)/util/map.o
|
|
|
-test_make_util_pmu_bison_o := test -f $(PERF)/util/pmu-bison.o
|
|
|
+test_make_perf_o := test -f $(PERF_O)/perf.o
|
|
|
+test_make_util_map_o := test -f $(PERF_O)/util/map.o
|
|
|
+test_make_util_pmu_bison_o := test -f $(PERF_O)/util/pmu-bison.o
|
|
|
|
|
|
define test_dest_files
|
|
|
for file in $(1); do \
|
|
@@ -227,7 +247,7 @@ test_make_perf_o_O := test -f $$TMP_O/perf.o
|
|
|
test_make_util_map_o_O := test -f $$TMP_O/util/map.o
|
|
|
test_make_util_pmu_bison_o_O := test -f $$TMP_O/util/pmu-bison.o
|
|
|
|
|
|
-test_default = test -x $(PERF)/perf
|
|
|
+test_default = test -x $(PERF_O)/perf
|
|
|
test = $(if $(test_$1),$(test_$1),$(test_default))
|
|
|
|
|
|
test_default_O = test -x $$TMP_O/perf
|
|
@@ -247,12 +267,12 @@ endif
|
|
|
|
|
|
MAKEFLAGS := --no-print-directory
|
|
|
|
|
|
-clean := @(cd $(PERF); make -s -f $(MK) clean >/dev/null)
|
|
|
+clean := @(cd $(PERF); make -s -f $(MK) $(O_OPT) clean >/dev/null)
|
|
|
|
|
|
$(run):
|
|
|
$(call clean)
|
|
|
@TMP_DEST=$$(mktemp -d); \
|
|
|
- cmd="cd $(PERF) && make -f $(MK) DESTDIR=$$TMP_DEST $($@)"; \
|
|
|
+ cmd="cd $(PERF) && make -f $(MK) $(PARALLEL_OPT) $(O_OPT) DESTDIR=$$TMP_DEST $($@)"; \
|
|
|
echo "- $@: $$cmd" && echo $$cmd > $@ && \
|
|
|
( eval $$cmd ) >> $@ 2>&1; \
|
|
|
echo " test: $(call test,$@)" >> $@ 2>&1; \
|
|
@@ -263,7 +283,7 @@ $(run_O):
|
|
|
$(call clean)
|
|
|
@TMP_O=$$(mktemp -d); \
|
|
|
TMP_DEST=$$(mktemp -d); \
|
|
|
- cmd="cd $(PERF) && make -f $(MK) O=$$TMP_O DESTDIR=$$TMP_DEST $($(patsubst %_O,%,$@))"; \
|
|
|
+ cmd="cd $(PERF) && make -f $(MK) $(PARALLEL_OPT) O=$$TMP_O DESTDIR=$$TMP_DEST $($(patsubst %_O,%,$@))"; \
|
|
|
echo "- $@: $$cmd" && echo $$cmd > $@ && \
|
|
|
( eval $$cmd ) >> $@ 2>&1 && \
|
|
|
echo " test: $(call test_O,$@)" >> $@ 2>&1; \
|
|
@@ -276,17 +296,22 @@ tarpkg:
|
|
|
( eval $$cmd ) >> $@ 2>&1 && \
|
|
|
rm -f $@
|
|
|
|
|
|
+KERNEL_O := ../..
|
|
|
+ifneq ($(O),)
|
|
|
+ KERNEL_O := $(O)
|
|
|
+endif
|
|
|
+
|
|
|
make_kernelsrc:
|
|
|
- @echo "- make -C <kernelsrc> tools/perf"
|
|
|
+ @echo "- make -C <kernelsrc> $(PARALLEL_OPT) $(K_O_OPT) tools/perf"
|
|
|
$(call clean); \
|
|
|
- (make -C ../.. tools/perf) > $@ 2>&1 && \
|
|
|
- test -x perf && rm -f $@ || (cat $@ ; false)
|
|
|
+ (make -C ../.. $(PARALLEL_OPT) $(K_O_OPT) tools/perf) > $@ 2>&1 && \
|
|
|
+ test -x $(KERNEL_O)/tools/perf/perf && rm -f $@ || (cat $@ ; false)
|
|
|
|
|
|
make_kernelsrc_tools:
|
|
|
- @echo "- make -C <kernelsrc>/tools perf"
|
|
|
+ @echo "- make -C <kernelsrc>/tools $(PARALLEL_OPT) $(K_O_OPT) perf"
|
|
|
$(call clean); \
|
|
|
- (make -C ../../tools perf) > $@ 2>&1 && \
|
|
|
- test -x perf && rm -f $@ || (cat $@ ; false)
|
|
|
+ (make -C ../../tools $(PARALLEL_OPT) $(K_O_OPT) perf) > $@ 2>&1 && \
|
|
|
+ test -x $(KERNEL_O)/tools/perf/perf && rm -f $@ || (cat $@ ; false)
|
|
|
|
|
|
all: $(run) $(run_O) tarpkg make_kernelsrc make_kernelsrc_tools
|
|
|
@echo OK
|