DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] kvargs: fix building with meson outside source tree
@ 2018-07-19 14:26 Bruce Richardson
  2018-07-19 14:45 ` Burakov, Anatoly
  0 siblings, 1 reply; 3+ messages in thread
From: Bruce Richardson @ 2018-07-19 14:26 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson

When building DPDK with meson with the <builddir> being outside the source
directory, an error was generated as the path to the EAL headers was not
found. The path specified for the includes backed out unnecessarily far and
so broke when the build directory was not in the expected location of
just inside the source dir. Changing the path to be shorter, just going
down one level and then into EAL builds for both cases - where builddir is
in source directory, and also when it's outside it.

Fixes: 092ee516496d ("kvargs: build before EAL")

Reported-by: Anatoly Burakov <anatoly.burakov@intel.com>
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 lib/librte_kvargs/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_kvargs/meson.build b/lib/librte_kvargs/meson.build
index a1c724961..acd3e5432 100644
--- a/lib/librte_kvargs/meson.build
+++ b/lib/librte_kvargs/meson.build
@@ -2,7 +2,7 @@
 # Copyright(c) 2017 Intel Corporation
 
 includes = [global_inc]
-includes += include_directories('../../../lib/librte_eal/common/include')
+includes += include_directories('../librte_eal/common/include')
 
 version = 1
 sources = files('rte_kvargs.c')
-- 
2.17.1

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

* Re: [dpdk-dev] [PATCH] kvargs: fix building with meson outside source tree
  2018-07-19 14:26 [dpdk-dev] [PATCH] kvargs: fix building with meson outside source tree Bruce Richardson
@ 2018-07-19 14:45 ` Burakov, Anatoly
  2018-07-26  8:14   ` Thomas Monjalon
  0 siblings, 1 reply; 3+ messages in thread
From: Burakov, Anatoly @ 2018-07-19 14:45 UTC (permalink / raw)
  To: Bruce Richardson, dev

On 19-Jul-18 3:26 PM, Bruce Richardson wrote:
> When building DPDK with meson with the <builddir> being outside the source
> directory, an error was generated as the path to the EAL headers was not
> found. The path specified for the includes backed out unnecessarily far and
> so broke when the build directory was not in the expected location of
> just inside the source dir. Changing the path to be shorter, just going
> down one level and then into EAL builds for both cases - where builddir is
> in source directory, and also when it's outside it.
> 
> Fixes: 092ee516496d ("kvargs: build before EAL")
> 
> Reported-by: Anatoly Burakov <anatoly.burakov@intel.com>
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> ---
>   lib/librte_kvargs/meson.build | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/librte_kvargs/meson.build b/lib/librte_kvargs/meson.build
> index a1c724961..acd3e5432 100644
> --- a/lib/librte_kvargs/meson.build
> +++ b/lib/librte_kvargs/meson.build
> @@ -2,7 +2,7 @@
>   # Copyright(c) 2017 Intel Corporation
>   
>   includes = [global_inc]
> -includes += include_directories('../../../lib/librte_eal/common/include')
> +includes += include_directories('../librte_eal/common/include')
>   
>   version = 1
>   sources = files('rte_kvargs.c')
> 

Tested-by: Anatoly Burakov <anatoly.burakov@intel.com>

-- 
Thanks,
Anatoly

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

* Re: [dpdk-dev] [PATCH] kvargs: fix building with meson outside source tree
  2018-07-19 14:45 ` Burakov, Anatoly
@ 2018-07-26  8:14   ` Thomas Monjalon
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2018-07-26  8:14 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev, Burakov, Anatoly

19/07/2018 16:45, Burakov, Anatoly:
> On 19-Jul-18 3:26 PM, Bruce Richardson wrote:
> > When building DPDK with meson with the <builddir> being outside the source
> > directory, an error was generated as the path to the EAL headers was not
> > found. The path specified for the includes backed out unnecessarily far and
> > so broke when the build directory was not in the expected location of
> > just inside the source dir. Changing the path to be shorter, just going
> > down one level and then into EAL builds for both cases - where builddir is
> > in source directory, and also when it's outside it.
> > 
> > Fixes: 092ee516496d ("kvargs: build before EAL")
> > 
> > Reported-by: Anatoly Burakov <anatoly.burakov@intel.com>
> > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> 
> Tested-by: Anatoly Burakov <anatoly.burakov@intel.com>

Applied, thanks

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

end of thread, other threads:[~2018-07-26  8:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-19 14:26 [dpdk-dev] [PATCH] kvargs: fix building with meson outside source tree Bruce Richardson
2018-07-19 14:45 ` Burakov, Anatoly
2018-07-26  8:14   ` Thomas Monjalon

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).