Re: [PATCH iproute2-next] Makefile: pass -pipe to the compiler

2019-07-14 Thread Matteo Croce
On Tue, Jun 11, 2019 at 9:28 PM Stephen Hemminger wrote: > > On Tue, 11 Jun 2019 20:05:13 +0200 > Matteo Croce wrote: > > > Pass the -pipe option to GCC, to use pipes instead of temp files. > > On a slow AMD G-T40E CPU we get a non negligible 6% improvement > > in build time. > > > > real1m15

Re: [PATCH iproute2-next] Makefile: pass -pipe to the compiler

2019-06-11 Thread Stephen Hemminger
On Tue, 11 Jun 2019 20:05:13 +0200 Matteo Croce wrote: > Pass the -pipe option to GCC, to use pipes instead of temp files. > On a slow AMD G-T40E CPU we get a non negligible 6% improvement > in build time. > > real1m15,111s > user1m2,521s > sys 0m12,465s > > real1m10,861s > user

[PATCH iproute2-next] Makefile: pass -pipe to the compiler

2019-06-11 Thread Matteo Croce
Pass the -pipe option to GCC, to use pipes instead of temp files. On a slow AMD G-T40E CPU we get a non negligible 6% improvement in build time. real1m15,111s user1m2,521s sys 0m12,465s real1m10,861s user1m2,520s sys 0m12,901s Signed-off-by: Matteo Croce --- Makefile |