Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1290824 > unrolled thread
| Started by | Josh Poimboeuf <jpoimboe@redhat.com> |
|---|---|
| First post | 2015-12-14 05:20 +0100 |
| Last post | 2015-12-18 09:50 +0100 |
| Articles | 4 — 4 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v3 03/17] perf test: Add Build file to dependencies for llvm-src-*.c Josh Poimboeuf <jpoimboe@redhat.com> - 2015-12-14 05:20 +0100
Re: [PATCH v3 03/17] perf test: Add Build file to dependencies for llvm-src-*.c Jiri Olsa <jolsa@redhat.com> - 2015-12-14 11:20 +0100
Re: [PATCH v3 03/17] perf test: Add Build file to dependencies for llvm-src-*.c Arnaldo Carvalho de Melo <acme@kernel.org> - 2015-12-14 16:20 +0100
[tip:perf/core] perf test: Add Build file to dependencies for llvm-src-*.c tip-bot for Josh Poimboeuf <tipbot@zytor.com> - 2015-12-18 09:50 +0100
| From | Josh Poimboeuf <jpoimboe@redhat.com> |
|---|---|
| Date | 2015-12-14 05:20 +0100 |
| Subject | [PATCH v3 03/17] perf test: Add Build file to dependencies for llvm-src-*.c |
| Message-ID | <qFsMa-14g-5@gated-at.bofh.it> |
Because the Build file writes source code to the generated llvm-src-*.c files, it should be listed as one of the dependencies, so that any future changes to the code being echoed won't require a 'make clean'. Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> --- tools/perf/tests/Build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/perf/tests/Build b/tools/perf/tests/Build index 0ff8a97..f23fb7e 100644 --- a/tools/perf/tests/Build +++ b/tools/perf/tests/Build @@ -35,21 +35,21 @@ perf-y += llvm.o llvm-src-base.o llvm-src-kbuild.o llvm-src-prologue.o perf-y += bpf.o perf-y += topology.o -$(OUTPUT)tests/llvm-src-base.c: tests/bpf-script-example.c +$(OUTPUT)tests/llvm-src-base.c: tests/bpf-script-example.c tests/Build $(call rule_mkdir) $(Q)echo '#include <tests/llvm.h>' > $@ $(Q)echo 'const char test_llvm__bpf_base_prog[] =' >> $@ $(Q)sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/g' $< >> $@ $(Q)echo ';' >> $@ -$(OUTPUT)tests/llvm-src-kbuild.c: tests/bpf-script-test-kbuild.c +$(OUTPUT)tests/llvm-src-kbuild.c: tests/bpf-script-test-kbuild.c tests/Build $(call rule_mkdir) $(Q)echo '#include <tests/llvm.h>' > $@ $(Q)echo 'const char test_llvm__bpf_test_kbuild_prog[] =' >> $@ $(Q)sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/g' $< >> $@ $(Q)echo ';' >> $@ -$(OUTPUT)tests/llvm-src-prologue.c: tests/bpf-script-test-prologue.c +$(OUTPUT)tests/llvm-src-prologue.c: tests/bpf-script-test-prologue.c tests/Build $(call rule_mkdir) $(Q)echo '#include <tests/llvm.h>' > $@ $(Q)echo 'const char test_llvm__bpf_test_prologue_prog[] =' >> $@ -- 2.4.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Jiri Olsa <jolsa@redhat.com> |
|---|---|
| Date | 2015-12-14 11:20 +0100 |
| Subject | Re: [PATCH v3 03/17] perf test: Add Build file to dependencies for llvm-src-*.c |
| Message-ID | <qFyox-4Kh-3@gated-at.bofh.it> |
| In reply to | #1290824 |
On Sun, Dec 13, 2015 at 10:18:03PM -0600, Josh Poimboeuf wrote: > Because the Build file writes source code to the generated llvm-src-*.c > files, it should be listed as one of the dependencies, so that any > future changes to the code being echoed won't require a 'make clean'. Acked-by: Jiri Olsa <jolsa@kernel.org> thanks, jirka > > Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> > --- > tools/perf/tests/Build | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tools/perf/tests/Build b/tools/perf/tests/Build > index 0ff8a97..f23fb7e 100644 > --- a/tools/perf/tests/Build > +++ b/tools/perf/tests/Build > @@ -35,21 +35,21 @@ perf-y += llvm.o llvm-src-base.o llvm-src-kbuild.o llvm-src-prologue.o > perf-y += bpf.o > perf-y += topology.o > > -$(OUTPUT)tests/llvm-src-base.c: tests/bpf-script-example.c > +$(OUTPUT)tests/llvm-src-base.c: tests/bpf-script-example.c tests/Build > $(call rule_mkdir) > $(Q)echo '#include <tests/llvm.h>' > $@ > $(Q)echo 'const char test_llvm__bpf_base_prog[] =' >> $@ > $(Q)sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/g' $< >> $@ > $(Q)echo ';' >> $@ > > -$(OUTPUT)tests/llvm-src-kbuild.c: tests/bpf-script-test-kbuild.c > +$(OUTPUT)tests/llvm-src-kbuild.c: tests/bpf-script-test-kbuild.c tests/Build > $(call rule_mkdir) > $(Q)echo '#include <tests/llvm.h>' > $@ > $(Q)echo 'const char test_llvm__bpf_test_kbuild_prog[] =' >> $@ > $(Q)sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/g' $< >> $@ > $(Q)echo ';' >> $@ > > -$(OUTPUT)tests/llvm-src-prologue.c: tests/bpf-script-test-prologue.c > +$(OUTPUT)tests/llvm-src-prologue.c: tests/bpf-script-test-prologue.c tests/Build > $(call rule_mkdir) > $(Q)echo '#include <tests/llvm.h>' > $@ > $(Q)echo 'const char test_llvm__bpf_test_prologue_prog[] =' >> $@ > -- > 2.4.3 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Arnaldo Carvalho de Melo <acme@kernel.org> |
|---|---|
| Date | 2015-12-14 16:20 +0100 |
| Subject | Re: [PATCH v3 03/17] perf test: Add Build file to dependencies for llvm-src-*.c |
| Message-ID | <qFD4S-7Rv-21@gated-at.bofh.it> |
| In reply to | #1291044 |
Em Mon, Dec 14, 2015 at 11:10:43AM +0100, Jiri Olsa escreveu: > On Sun, Dec 13, 2015 at 10:18:03PM -0600, Josh Poimboeuf wrote: > > Because the Build file writes source code to the generated llvm-src-*.c > > files, it should be listed as one of the dependencies, so that any > > future changes to the code being echoed won't require a 'make clean'. > > Acked-by: Jiri Olsa <jolsa@kernel.org> Thanks, applied. > thanks, > jirka > > > > > Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> > > --- > > tools/perf/tests/Build | 6 +++--- > > 1 file changed, 3 insertions(+), 3 deletions(-) > > > > diff --git a/tools/perf/tests/Build b/tools/perf/tests/Build > > index 0ff8a97..f23fb7e 100644 > > --- a/tools/perf/tests/Build > > +++ b/tools/perf/tests/Build > > @@ -35,21 +35,21 @@ perf-y += llvm.o llvm-src-base.o llvm-src-kbuild.o llvm-src-prologue.o > > perf-y += bpf.o > > perf-y += topology.o > > > > -$(OUTPUT)tests/llvm-src-base.c: tests/bpf-script-example.c > > +$(OUTPUT)tests/llvm-src-base.c: tests/bpf-script-example.c tests/Build > > $(call rule_mkdir) > > $(Q)echo '#include <tests/llvm.h>' > $@ > > $(Q)echo 'const char test_llvm__bpf_base_prog[] =' >> $@ > > $(Q)sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/g' $< >> $@ > > $(Q)echo ';' >> $@ > > > > -$(OUTPUT)tests/llvm-src-kbuild.c: tests/bpf-script-test-kbuild.c > > +$(OUTPUT)tests/llvm-src-kbuild.c: tests/bpf-script-test-kbuild.c tests/Build > > $(call rule_mkdir) > > $(Q)echo '#include <tests/llvm.h>' > $@ > > $(Q)echo 'const char test_llvm__bpf_test_kbuild_prog[] =' >> $@ > > $(Q)sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/g' $< >> $@ > > $(Q)echo ';' >> $@ > > > > -$(OUTPUT)tests/llvm-src-prologue.c: tests/bpf-script-test-prologue.c > > +$(OUTPUT)tests/llvm-src-prologue.c: tests/bpf-script-test-prologue.c tests/Build > > $(call rule_mkdir) > > $(Q)echo '#include <tests/llvm.h>' > $@ > > $(Q)echo 'const char test_llvm__bpf_test_prologue_prog[] =' >> $@ > > -- > > 2.4.3 > > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | tip-bot for Josh Poimboeuf <tipbot@zytor.com> |
|---|---|
| Date | 2015-12-18 09:50 +0100 |
| Subject | [tip:perf/core] perf test: Add Build file to dependencies for llvm-src-*.c |
| Message-ID | <qGYTD-3jm-1@gated-at.bofh.it> |
| In reply to | #1290824 |
Commit-ID: 8bda6a63a049caee4f8ddf2dd99055794df96e4f Gitweb: http://git.kernel.org/tip/8bda6a63a049caee4f8ddf2dd99055794df96e4f Author: Josh Poimboeuf <jpoimboe@redhat.com> AuthorDate: Sun, 13 Dec 2015 22:18:03 -0600 Committer: Arnaldo Carvalho de Melo <acme@redhat.com> CommitDate: Mon, 14 Dec 2015 12:17:09 -0300 perf test: Add Build file to dependencies for llvm-src-*.c Because the Build file writes source code to the generated llvm-src-*.c files, it should be listed as one of the dependencies, so that any future changes to the code being echoed won't require a 'make clean'. Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com> Acked-by: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/9b9886c295750dc83cbbb29a665d280f9c5e8b3e.1449965119.git.jpoimboe@redhat.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> --- tools/perf/tests/Build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/perf/tests/Build b/tools/perf/tests/Build index 0ff8a97..f23fb7e 100644 --- a/tools/perf/tests/Build +++ b/tools/perf/tests/Build @@ -35,21 +35,21 @@ perf-y += llvm.o llvm-src-base.o llvm-src-kbuild.o llvm-src-prologue.o perf-y += bpf.o perf-y += topology.o -$(OUTPUT)tests/llvm-src-base.c: tests/bpf-script-example.c +$(OUTPUT)tests/llvm-src-base.c: tests/bpf-script-example.c tests/Build $(call rule_mkdir) $(Q)echo '#include <tests/llvm.h>' > $@ $(Q)echo 'const char test_llvm__bpf_base_prog[] =' >> $@ $(Q)sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/g' $< >> $@ $(Q)echo ';' >> $@ -$(OUTPUT)tests/llvm-src-kbuild.c: tests/bpf-script-test-kbuild.c +$(OUTPUT)tests/llvm-src-kbuild.c: tests/bpf-script-test-kbuild.c tests/Build $(call rule_mkdir) $(Q)echo '#include <tests/llvm.h>' > $@ $(Q)echo 'const char test_llvm__bpf_test_kbuild_prog[] =' >> $@ $(Q)sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/g' $< >> $@ $(Q)echo ';' >> $@ -$(OUTPUT)tests/llvm-src-prologue.c: tests/bpf-script-test-prologue.c +$(OUTPUT)tests/llvm-src-prologue.c: tests/bpf-script-test-prologue.c tests/Build $(call rule_mkdir) $(Q)echo '#include <tests/llvm.h>' > $@ $(Q)echo 'const char test_llvm__bpf_test_prologue_prog[] =' >> $@ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web