Re: [PATCH v5] genemit.c (main): split insn-emit.c for compiling parallelly

2020-09-11 Thread Jojo R
Hi, Ok & Thanks, It’s fixed in patch v6. Jojo 在 2020年8月28日 +0800 PM5:52,Richard Sandiford ,写道: > Thanks for doing this. In addition to what Segher said: > > Jojo R writes: > > gcc/ChangeLog: > > > > * genemit.c (main): Print 'split line'. > > * Makefile.in (insn-emit.c): Define

Re: [PATCH v5] genemit.c (main): split insn-emit.c for compiling parallelly

2020-09-11 Thread Jojo R
Hi, Ok & Thanks, It’s fixed in patch v6. Jojo 在 2020年8月28日 +0800 AM4:40,Segher Boessenkool ,写道: > Hi! > > On Thu, Aug 27, 2020 at 08:47:19PM +0800, Jojo R wrote: > > +insn-emit-split-c = $(foreach o, $(shell for i in > > {1..$(insn-generated-split-num)}; do echo $$i; done),

Re: [PATCH v5] genemit.c (main): split insn-emit.c for compiling parallelly

2020-08-28 Thread Richard Sandiford
Thanks for doing this. In addition to what Segher said: Jojo R writes: > gcc/ChangeLog: > > * genemit.c (main): Print 'split line'. > * Makefile.in (insn-emit.c): Define split count and file > > --- > gcc/Makefile.in | 15 + > gcc/genemit.c | 87

Re: [PATCH v5] genemit.c (main): split insn-emit.c for compiling parallelly

2020-08-27 Thread Segher Boessenkool
Hi! On Thu, Aug 27, 2020 at 08:47:19PM +0800, Jojo R wrote: > +insn-emit-split-c = $(foreach o, $(shell for i in > {1..$(insn-generated-split-num)}; do echo $$i; done), insn-emit$(o).c) If you use a variable for the result of that "seq", this will be more readable / maintainable / etc. (Should

[PATCH v5] genemit.c (main): split insn-emit.c for compiling parallelly

2020-08-27 Thread Jojo R
gcc/ChangeLog: * genemit.c (main): Print 'split line'. * Makefile.in (insn-emit.c): Define split count and file --- gcc/Makefile.in | 15 + gcc/genemit.c | 87 - 2 files changed, 64 insertions(+), 38 deletions(-) diff