DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] Issue building for ppc64le
@ 2018-02-27 16:08 Marco Varlese
  2018-02-27 18:15 ` Ferruh Yigit
  0 siblings, 1 reply; 4+ messages in thread
From: Marco Varlese @ 2018-02-27 16:08 UTC (permalink / raw)
  To: dev

Hi,

Is anybody else experiencing issues with building DPDK 17.11 for ppc64le?
Any help would be very much appreciated.

I get the below error:

== START ==
[  326s] gcc -Wp,-MD,./.power_manager.o.d.tmp  -m64 -pthread -fPIC   -
DRTE_MACHINE_CPUFLAG_PPC64 -DRTE_MACHINE_CPUFLAG_ALTIVEC
-DRTE_MACHINE_CPUFLAG_VSX  -I/home/abuild/rpmbuild/BUILD/dpdk-17.11/ppc_64-
power8-linuxapp-gcc/examples/vm_power_manager/ppc_64-power8-linuxapp-gcc/include 
-I/home/abuild/rpmbuild/BUILD/dpdk-17.11/ppc_64-power8-linuxapp-gcc/include
-include /home/abuild/rpmbuild/BUILD/dpdk-17.11/ppc_64-power8-linuxapp-
gcc/include/rte_config.h -O3 -I/home/abuild/rpmbuild/BUILD/dpdk-
17.11/lib/librte_power/ -W -Wall -Wstrict-prototypes -Wmissing-prototypes
-Wmissing-declarations -Wold-style-definition -Wpointer-arith -Wcast-align
-Wnested-externs -Wcast-qual -Wformat-nonliteral -Wformat-security -Wundef
-Wwrite-strings -Wimplicit-fallthrough=2 -Wno-format-truncation   -
DVERSION="17.11" -o power_manager.o -c /home/abuild/rpmbuild/BUILD/dpdk-
17.11/examples/vm_power_manager/power_manager.c 
[  327s] /home/abuild/rpmbuild/BUILD/dpdk-
17.11/examples/vm_power_manager/main.c:61:10: fatal error: rte_pmd_ixgbe.h: No
such file or directory
[  327s]  #include <rte_pmd_ixgbe.h>
[  327s]           ^~~~~~~~~~~~~~~~~
[  327s] compilation terminated.
[  327s] make[4]: *** [/home/abuild/rpmbuild/BUILD/dpdk-
17.11/mk/internal/rte.compile-pre.mk:140: main.o] Error 1
[  327s] make[4]: *** Waiting for unfinished jobs....
== END ==

Cheers,
-- 
Marco V

SUSE LINUX GmbH | GF: Felix Imendörffer, Jane Smithard, Graham Norton
HRB 21284 (AG Nürnberg) Maxfeldstr. 5, D-90409, Nürnberg

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

* Re: [dpdk-dev] Issue building for ppc64le
  2018-02-27 16:08 [dpdk-dev] Issue building for ppc64le Marco Varlese
@ 2018-02-27 18:15 ` Ferruh Yigit
  2018-02-28  6:47   ` Marco Varlese
  0 siblings, 1 reply; 4+ messages in thread
From: Ferruh Yigit @ 2018-02-27 18:15 UTC (permalink / raw)
  To: Marco Varlese, dev; +Cc: Dave Hunt

On 2/27/2018 4:08 PM, Marco Varlese wrote:
> Hi,
> 
> Is anybody else experiencing issues with building DPDK 17.11 for ppc64le?
> Any help would be very much appreciated.

I have not tested but PPC config disables the ixgbe and this sample uses
ixgbe so build error is expected.

This example is using PMD specific APIs and unfortunately it makes the
sample application non portable for all architectures.

> 
> I get the below error:
> 
> == START ==
> [  326s] gcc -Wp,-MD,./.power_manager.o.d.tmp  -m64 -pthread -fPIC   -
> DRTE_MACHINE_CPUFLAG_PPC64 -DRTE_MACHINE_CPUFLAG_ALTIVEC
> -DRTE_MACHINE_CPUFLAG_VSX  -I/home/abuild/rpmbuild/BUILD/dpdk-17.11/ppc_64-
> power8-linuxapp-gcc/examples/vm_power_manager/ppc_64-power8-linuxapp-gcc/include 
> -I/home/abuild/rpmbuild/BUILD/dpdk-17.11/ppc_64-power8-linuxapp-gcc/include
> -include /home/abuild/rpmbuild/BUILD/dpdk-17.11/ppc_64-power8-linuxapp-
> gcc/include/rte_config.h -O3 -I/home/abuild/rpmbuild/BUILD/dpdk-
> 17.11/lib/librte_power/ -W -Wall -Wstrict-prototypes -Wmissing-prototypes
> -Wmissing-declarations -Wold-style-definition -Wpointer-arith -Wcast-align
> -Wnested-externs -Wcast-qual -Wformat-nonliteral -Wformat-security -Wundef
> -Wwrite-strings -Wimplicit-fallthrough=2 -Wno-format-truncation   -
> DVERSION="17.11" -o power_manager.o -c /home/abuild/rpmbuild/BUILD/dpdk-
> 17.11/examples/vm_power_manager/power_manager.c 
> [  327s] /home/abuild/rpmbuild/BUILD/dpdk-
> 17.11/examples/vm_power_manager/main.c:61:10: fatal error: rte_pmd_ixgbe.h: No
> such file or directory
> [  327s]  #include <rte_pmd_ixgbe.h>
> [  327s]           ^~~~~~~~~~~~~~~~~
> [  327s] compilation terminated.
> [  327s] make[4]: *** [/home/abuild/rpmbuild/BUILD/dpdk-
> 17.11/mk/internal/rte.compile-pre.mk:140: main.o] Error 1
> [  327s] make[4]: *** Waiting for unfinished jobs....
> == END ==
> 
> Cheers,
> 

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

* Re: [dpdk-dev] Issue building for ppc64le
  2018-02-27 18:15 ` Ferruh Yigit
@ 2018-02-28  6:47   ` Marco Varlese
  2018-02-28  7:01     ` Marco Varlese
  0 siblings, 1 reply; 4+ messages in thread
From: Marco Varlese @ 2018-02-28  6:47 UTC (permalink / raw)
  To: Ferruh Yigit, dev; +Cc: Dave Hunt

On Tue, 2018-02-27 at 18:15 +0000, Ferruh Yigit wrote:
> On 2/27/2018 4:08 PM, Marco Varlese wrote:
> > Hi,
> > 
> > Is anybody else experiencing issues with building DPDK 17.11 for ppc64le?
> > Any help would be very much appreciated.
> 
> I have not tested but PPC config disables the ixgbe and this sample uses
> ixgbe so build error is expected.
Ok; so can you provide how to disable IXGBE?
> 
> This example is using PMD specific APIs and unfortunately it makes the
> sample application non portable for all architectures.
Ok; how do I disable the building of this sample app?
> 
> > 
> > I get the below error:
> > 
> > == START ==
> > [  326s] gcc -Wp,-MD,./.power_manager.o.d.tmp  -m64 -pthread -fPIC   -
> > DRTE_MACHINE_CPUFLAG_PPC64 -DRTE_MACHINE_CPUFLAG_ALTIVEC
> > -DRTE_MACHINE_CPUFLAG_VSX  -I/home/abuild/rpmbuild/BUILD/dpdk-17.11/ppc_64-
> > power8-linuxapp-gcc/examples/vm_power_manager/ppc_64-power8-linuxapp-
> > gcc/include 
> > -I/home/abuild/rpmbuild/BUILD/dpdk-17.11/ppc_64-power8-linuxapp-gcc/include
> > -include /home/abuild/rpmbuild/BUILD/dpdk-17.11/ppc_64-power8-linuxapp-
> > gcc/include/rte_config.h -O3 -I/home/abuild/rpmbuild/BUILD/dpdk-
> > 17.11/lib/librte_power/ -W -Wall -Wstrict-prototypes -Wmissing-prototypes
> > -Wmissing-declarations -Wold-style-definition -Wpointer-arith -Wcast-align
> > -Wnested-externs -Wcast-qual -Wformat-nonliteral -Wformat-security -Wundef
> > -Wwrite-strings -Wimplicit-fallthrough=2 -Wno-format-truncation   -
> > DVERSION="17.11" -o power_manager.o -c /home/abuild/rpmbuild/BUILD/dpdk-
> > 17.11/examples/vm_power_manager/power_manager.c 
> > [  327s] /home/abuild/rpmbuild/BUILD/dpdk-
> > 17.11/examples/vm_power_manager/main.c:61:10: fatal error: rte_pmd_ixgbe.h:
> > No
> > such file or directory
> > [  327s]  #include <rte_pmd_ixgbe.h>
> > [  327s]           ^~~~~~~~~~~~~~~~~
> > [  327s] compilation terminated.
> > [  327s] make[4]: *** [/home/abuild/rpmbuild/BUILD/dpdk-
> > 17.11/mk/internal/rte.compile-pre.mk:140: main.o] Error 1
> > [  327s] make[4]: *** Waiting for unfinished jobs....
> > == END ==
> > 
> > Cheers,
> > 
> 
> 
-- 
Marco V

SUSE LINUX GmbH | GF: Felix Imendörffer, Jane Smithard, Graham Norton
HRB 21284 (AG Nürnberg) Maxfeldstr. 5, D-90409, Nürnberg

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

* Re: [dpdk-dev] Issue building for ppc64le
  2018-02-28  6:47   ` Marco Varlese
@ 2018-02-28  7:01     ` Marco Varlese
  0 siblings, 0 replies; 4+ messages in thread
From: Marco Varlese @ 2018-02-28  7:01 UTC (permalink / raw)
  To: Ferruh Yigit, dev; +Cc: Dave Hunt

On Wed, 2018-02-28 at 07:47 +0100, Marco Varlese wrote:
> On Tue, 2018-02-27 at 18:15 +0000, Ferruh Yigit wrote:
> > On 2/27/2018 4:08 PM, Marco Varlese wrote:
> > > Hi,
> > > 
> > > Is anybody else experiencing issues with building DPDK 17.11 for ppc64le?
> > > Any help would be very much appreciated.
> > 
> > I have not tested but PPC config disables the ixgbe and this sample uses
> > ixgbe so build error is expected.
> 
> Ok; so can you provide how to disable IXGBE?
Never mind, I found how to...
> > 
> > This example is using PMD specific APIs and unfortunately it makes the
> > sample application non portable for all architectures.
> 
> Ok; how do I disable the building of this sample app?
Never mind, I found how to...
> > 
> > > 
> > > I get the below error:
> > > 
> > > == START ==
> > > [  326s] gcc -Wp,-MD,./.power_manager.o.d.tmp  -m64 -pthread -fPIC   -
> > > DRTE_MACHINE_CPUFLAG_PPC64 -DRTE_MACHINE_CPUFLAG_ALTIVEC
> > > -DRTE_MACHINE_CPUFLAG_VSX  -I/home/abuild/rpmbuild/BUILD/dpdk-
> > > 17.11/ppc_64-
> > > power8-linuxapp-gcc/examples/vm_power_manager/ppc_64-power8-linuxapp-
> > > gcc/include 
> > > -I/home/abuild/rpmbuild/BUILD/dpdk-17.11/ppc_64-power8-linuxapp-
> > > gcc/include
> > > -include /home/abuild/rpmbuild/BUILD/dpdk-17.11/ppc_64-power8-linuxapp-
> > > gcc/include/rte_config.h -O3 -I/home/abuild/rpmbuild/BUILD/dpdk-
> > > 17.11/lib/librte_power/ -W -Wall -Wstrict-prototypes -Wmissing-prototypes
> > > -Wmissing-declarations -Wold-style-definition -Wpointer-arith -Wcast-align
> > > -Wnested-externs -Wcast-qual -Wformat-nonliteral -Wformat-security -Wundef
> > > -Wwrite-strings -Wimplicit-fallthrough=2 -Wno-format-truncation   -
> > > DVERSION="17.11" -o power_manager.o -c /home/abuild/rpmbuild/BUILD/dpdk-
> > > 17.11/examples/vm_power_manager/power_manager.c 
> > > [  327s] /home/abuild/rpmbuild/BUILD/dpdk-
> > > 17.11/examples/vm_power_manager/main.c:61:10: fatal error:
> > > rte_pmd_ixgbe.h:
> > > No
> > > such file or directory
> > > [  327s]  #include <rte_pmd_ixgbe.h>
> > > [  327s]           ^~~~~~~~~~~~~~~~~
> > > [  327s] compilation terminated.
> > > [  327s] make[4]: *** [/home/abuild/rpmbuild/BUILD/dpdk-
> > > 17.11/mk/internal/rte.compile-pre.mk:140: main.o] Error 1
> > > [  327s] make[4]: *** Waiting for unfinished jobs....
> > > == END ==
> > > 
> > > Cheers,
> > > 
> > 
> > 
-- 
Marco V

SUSE LINUX GmbH | GF: Felix Imendörffer, Jane Smithard, Graham Norton
HRB 21284 (AG Nürnberg) Maxfeldstr. 5, D-90409, Nürnberg

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

end of thread, other threads:[~2018-02-28  7:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-27 16:08 [dpdk-dev] Issue building for ppc64le Marco Varlese
2018-02-27 18:15 ` Ferruh Yigit
2018-02-28  6:47   ` Marco Varlese
2018-02-28  7:01     ` Marco Varlese

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).