Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1346378 > unrolled thread
| Started by | Masahiro Yamada <yamada.masahiro@socionext.com> |
|---|---|
| First post | 2016-03-01 06:40 +0100 |
| Last post | 2016-03-01 14:30 +0100 |
| Articles | 2 — 2 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.
Re: [PATCH] tools build: use .s extension for preprocessed assembler code Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-03-01 06:40 +0100
Re: [PATCH] tools build: use .s extension for preprocessed assembler code Arnaldo Carvalho de Melo <acme@redhat.com> - 2016-03-01 14:30 +0100
| From | Masahiro Yamada <yamada.masahiro@socionext.com> |
|---|---|
| Date | 2016-03-01 06:40 +0100 |
| Subject | Re: [PATCH] tools build: use .s extension for preprocessed assembler code |
| Message-ID | <r7Lcn-4Ri-9@gated-at.bofh.it> |
Hi Arnaldo, Do you have any comment on this patch? (I hope I am addressing myself to a right person. "git log --pretty=fuller tools/build/Makefile.build" showed that several patches in this area had been applied by you.) Thanks, 2016-02-01 2:59 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>: > The "man gcc" says .i extension represents the file is C source code > that should not be preprocessed. Here, .s should be used. > > For clarification, > .c ---(preprocess)---> .i > .S ---(preprocess)---> .s > > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> > --- > > tools/build/Makefile.build | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/build/Makefile.build b/tools/build/Makefile.build > index 4a96473..ee566e8 100644 > --- a/tools/build/Makefile.build > +++ b/tools/build/Makefile.build > @@ -85,7 +85,7 @@ $(OUTPUT)%.i: %.c FORCE > $(call rule_mkdir) > $(call if_changed_dep,cc_i_c) > > -$(OUTPUT)%.i: %.S FORCE > +$(OUTPUT)%.s: %.S FORCE > $(call rule_mkdir) > $(call if_changed_dep,cc_i_c) > > -- > 1.9.1 > -- Best Regards Masahiro Yamada
[toc] | [next] | [standalone]
| From | Arnaldo Carvalho de Melo <acme@redhat.com> |
|---|---|
| Date | 2016-03-01 14:30 +0100 |
| Subject | Re: [PATCH] tools build: use .s extension for preprocessed assembler code |
| Message-ID | <r7Sxc-1fV-13@gated-at.bofh.it> |
| In reply to | #1346378 |
Em Tue, Mar 01, 2016 at 02:31:10PM +0900, Masahiro Yamada escreveu: > Hi Arnaldo, > > Do you have any comment on this patch? Sorry for the delay, I saw this patch, found no problems with it but was waiting for Jiri's Ack, which he provided today, applying, thanks. - Arnaldo > (I hope I am addressing myself to a right person. > "git log --pretty=fuller tools/build/Makefile.build" showed that > several patches in this area had been applied by you.) > > > Thanks, > > > 2016-02-01 2:59 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>: > > The "man gcc" says .i extension represents the file is C source code > > that should not be preprocessed. Here, .s should be used. > > > > For clarification, > > .c ---(preprocess)---> .i > > .S ---(preprocess)---> .s > > > > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> > > --- > > > > tools/build/Makefile.build | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/tools/build/Makefile.build b/tools/build/Makefile.build > > index 4a96473..ee566e8 100644 > > --- a/tools/build/Makefile.build > > +++ b/tools/build/Makefile.build > > @@ -85,7 +85,7 @@ $(OUTPUT)%.i: %.c FORCE > > $(call rule_mkdir) > > $(call if_changed_dep,cc_i_c) > > > > -$(OUTPUT)%.i: %.S FORCE > > +$(OUTPUT)%.s: %.S FORCE > > $(call rule_mkdir) > > $(call if_changed_dep,cc_i_c) > > > > -- > > 1.9.1 > > > > > > -- > Best Regards > Masahiro Yamada
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web