Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] netperf: bump to version 2.7.0
@ 2015-07-22 13:59 Gustavo Zacarias
  2015-07-22 14:45 ` Thomas Petazzoni
  2015-07-22 15:23 ` Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2015-07-22 13:59 UTC (permalink / raw)
  To: buildroot

Also add hash file.
And work around gcc 5+ defaulting to gnu99, fixes:

http://autobuild.buildroot.net/results/077/077714a0ee67057abcff680b244228a409243bbf/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/netperf/netperf.hash | 2 ++
 package/netperf/netperf.mk   | 8 ++++++--
 2 files changed, 8 insertions(+), 2 deletions(-)
 create mode 100644 package/netperf/netperf.hash

diff --git a/package/netperf/netperf.hash b/package/netperf/netperf.hash
new file mode 100644
index 0000000..f972740
--- /dev/null
+++ b/package/netperf/netperf.hash
@@ -0,0 +1,2 @@
+# Locally calculated
+sha256	842af17655835c8be7203808c3393e6cb327a8067f3ed1f1053eb78b4e40375a	netperf-2.7.0.tar.bz2
diff --git a/package/netperf/netperf.mk b/package/netperf/netperf.mk
index 13d44fe..8b22808 100644
--- a/package/netperf/netperf.mk
+++ b/package/netperf/netperf.mk
@@ -4,9 +4,13 @@
 #
 ################################################################################
 
-NETPERF_VERSION = 2.6.0
+NETPERF_VERSION = 2.7.0
 NETPERF_SITE = ftp://ftp.netperf.org/netperf
-NETPERF_CONF_ENV = ac_cv_func_setpgrp_void=set
+NETPERF_SOURCE = netperf-$(NETPERF_VERSION).tar.bz2
+# gcc 5+ defaults to gnu99 which breaks netperf
+NETPERF_CONF_ENV = \
+	ac_cv_func_setpgrp_void=set \
+	CFLAGS="$(TARGET_CFLAGS) -std=gnu89"
 NETPERF_CONF_OPTS = --enable-demo=yes
 NETPERF_LICENSE = netperf license
 NETPERF_LICENSE_FILES = COPYING
-- 
2.3.6

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] netperf: bump to version 2.7.0
  2015-07-22 13:59 [Buildroot] [PATCH] netperf: bump to version 2.7.0 Gustavo Zacarias
@ 2015-07-22 14:45 ` Thomas Petazzoni
  2015-07-22 14:47   ` Gustavo Zacarias
  2015-07-22 15:23 ` Thomas Petazzoni
  1 sibling, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2015-07-22 14:45 UTC (permalink / raw)
  To: buildroot

Dear Gustavo Zacarias,

On Wed, 22 Jul 2015 10:59:50 -0300, Gustavo Zacarias wrote:
> Also add hash file.
> And work around gcc 5+ defaulting to gnu99, fixes:

gnu99

> +	CFLAGS="$(TARGET_CFLAGS) -std=gnu89"

or gnu89 ? :-)

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] netperf: bump to version 2.7.0
  2015-07-22 14:45 ` Thomas Petazzoni
@ 2015-07-22 14:47   ` Gustavo Zacarias
  0 siblings, 0 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2015-07-22 14:47 UTC (permalink / raw)
  To: buildroot

On 22/07/15 11:45, Thomas Petazzoni wrote:

> Dear Gustavo Zacarias,
>
> On Wed, 22 Jul 2015 10:59:50 -0300, Gustavo Zacarias wrote:
>> Also add hash file.
>> And work around gcc 5+ defaulting to gnu99, fixes:
>
> gnu99
>
>> +	CFLAGS="$(TARGET_CFLAGS) -std=gnu89"
>
> or gnu89 ? :-)

The default in gcc < 5 is gnu89, in gcc >= 5 is gnu99, and netperf needs 
gnu89, so the text and cflags are fine ;)
Regards.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] netperf: bump to version 2.7.0
  2015-07-22 13:59 [Buildroot] [PATCH] netperf: bump to version 2.7.0 Gustavo Zacarias
  2015-07-22 14:45 ` Thomas Petazzoni
@ 2015-07-22 15:23 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-07-22 15:23 UTC (permalink / raw)
  To: buildroot

Dear Gustavo Zacarias,

On Wed, 22 Jul 2015 10:59:50 -0300, Gustavo Zacarias wrote:
> Also add hash file.
> And work around gcc 5+ defaulting to gnu99, fixes:
> 
> http://autobuild.buildroot.net/results/077/077714a0ee67057abcff680b244228a409243bbf/
> 
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/netperf/netperf.hash | 2 ++
>  package/netperf/netperf.mk   | 8 ++++++--
>  2 files changed, 8 insertions(+), 2 deletions(-)
>  create mode 100644 package/netperf/netperf.hash

Applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-07-22 15:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-22 13:59 [Buildroot] [PATCH] netperf: bump to version 2.7.0 Gustavo Zacarias
2015-07-22 14:45 ` Thomas Petazzoni
2015-07-22 14:47   ` Gustavo Zacarias
2015-07-22 15:23 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox