All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] tools/iio: Use include/uapi with __EXPORTED_HEADERS__
@ 2017-04-21 12:31 Sekhar Nori
  2017-04-23  2:22 ` Randy Dunlap
  2017-04-27  5:33 ` Jonathan Cameron
  0 siblings, 2 replies; 5+ messages in thread
From: Sekhar Nori @ 2017-04-21 12:31 UTC (permalink / raw)
  To: Jonathan Cameron
  Cc: Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler,
	linux-iio, linux-kernel, Sekhar Nori, Randy Dunlap

Use the local uapi headers to keep in sync with "recently" added enum
values like IIO_UVINDEX.

Build tested using:
$ make -C <kernelsrcdir> tools/iio
$ make -C <kernelsrcdir>/tools iio
$ make -C <kernelsrcdir>/tools/iio

This follows a strategy similar to that used by tools/hv, tools/net and
tools/leds among others.

Cc: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
---
Change since v1:
Shift to a strategy similar to that used by other makefiles in
tools/ folder. v1 posting here: https://patchwork.kernel.org/patch/9674937/

 tools/iio/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/iio/Makefile b/tools/iio/Makefile
index 5446d625e17d..8f08e03a9a5e 100644
--- a/tools/iio/Makefile
+++ b/tools/iio/Makefile
@@ -1,5 +1,5 @@
 CC = $(CROSS_COMPILE)gcc
-CFLAGS += -Wall -g -D_GNU_SOURCE
+CFLAGS += -Wall -g -D_GNU_SOURCE -D__EXPORTED_HEADERS__ -I../../include/uapi -I../../include
 
 BINDIR=usr/bin
 INSTALL_PROGRAM=install -m 755 -p
-- 
2.9.0

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

* Re: [PATCH v2] tools/iio: Use include/uapi with __EXPORTED_HEADERS__
  2017-04-21 12:31 [PATCH v2] tools/iio: Use include/uapi with __EXPORTED_HEADERS__ Sekhar Nori
@ 2017-04-23  2:22 ` Randy Dunlap
  2017-04-24 11:40   ` Sekhar Nori
  2017-04-27  5:33 ` Jonathan Cameron
  1 sibling, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2017-04-23  2:22 UTC (permalink / raw)
  To: Sekhar Nori, Jonathan Cameron
  Cc: Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler,
	linux-iio, linux-kernel

On 04/21/17 05:31, Sekhar Nori wrote:
> Use the local uapi headers to keep in sync with "recently" added enum
> values like IIO_UVINDEX.
> 
> Build tested using:
> $ make -C <kernelsrcdir> tools/iio
> $ make -C <kernelsrcdir>/tools iio
> $ make -C <kernelsrcdir>/tools/iio

Hi,
Did you do any testing with O=<outputdir> ?

Thanks.

> This follows a strategy similar to that used by tools/hv, tools/net and
> tools/leds among others.
> 
> Cc: Randy Dunlap <rdunlap@infradead.org>
> Cc: Jonathan Cameron <jic23@kernel.org>
> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
> ---
> Change since v1:
> Shift to a strategy similar to that used by other makefiles in
> tools/ folder. v1 posting here: https://patchwork.kernel.org/patch/9674937/
> 
>  tools/iio/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/iio/Makefile b/tools/iio/Makefile
> index 5446d625e17d..8f08e03a9a5e 100644
> --- a/tools/iio/Makefile
> +++ b/tools/iio/Makefile
> @@ -1,5 +1,5 @@
>  CC = $(CROSS_COMPILE)gcc
> -CFLAGS += -Wall -g -D_GNU_SOURCE
> +CFLAGS += -Wall -g -D_GNU_SOURCE -D__EXPORTED_HEADERS__ -I../../include/uapi -I../../include
>  
>  BINDIR=usr/bin
>  INSTALL_PROGRAM=install -m 755 -p
> 


-- 
~Randy

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

* Re: [PATCH v2] tools/iio: Use include/uapi with __EXPORTED_HEADERS__
  2017-04-23  2:22 ` Randy Dunlap
@ 2017-04-24 11:40   ` Sekhar Nori
  2017-04-24 15:30     ` Randy Dunlap
  0 siblings, 1 reply; 5+ messages in thread
From: Sekhar Nori @ 2017-04-24 11:40 UTC (permalink / raw)
  To: Randy Dunlap, Jonathan Cameron
  Cc: Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler,
	linux-iio, linux-kernel

Hi Randy,

On Sunday 23 April 2017 07:52 AM, Randy Dunlap wrote:
> On 04/21/17 05:31, Sekhar Nori wrote:
>> Use the local uapi headers to keep in sync with "recently" added enum
>> values like IIO_UVINDEX.
>>
>> Build tested using:
>> $ make -C <kernelsrcdir> tools/iio
>> $ make -C <kernelsrcdir>/tools iio
>> $ make -C <kernelsrcdir>/tools/iio
> 
> Hi,
> Did you do any testing with O=<outputdir> ?

I hadn't, but I just checked with:

$ make -C <kernelsrcdir>/tools iio O=<outputdir>

Although there is an iio folder created under <outputdir>, the actual
binaries are still built under <kernelsrcdir>/tools/iio. So I think
there is some more work to be done to respect the O= option passed from
command line.

The behavior remains same with or without my patch.

Thanks,
Sekhar

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

* Re: [PATCH v2] tools/iio: Use include/uapi with __EXPORTED_HEADERS__
  2017-04-24 11:40   ` Sekhar Nori
@ 2017-04-24 15:30     ` Randy Dunlap
  0 siblings, 0 replies; 5+ messages in thread
From: Randy Dunlap @ 2017-04-24 15:30 UTC (permalink / raw)
  To: Sekhar Nori, Jonathan Cameron
  Cc: Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler,
	linux-iio, linux-kernel

On 04/24/17 04:40, Sekhar Nori wrote:
> Hi Randy,
> 
> On Sunday 23 April 2017 07:52 AM, Randy Dunlap wrote:
>> On 04/21/17 05:31, Sekhar Nori wrote:
>>> Use the local uapi headers to keep in sync with "recently" added enum
>>> values like IIO_UVINDEX.
>>>
>>> Build tested using:
>>> $ make -C <kernelsrcdir> tools/iio
>>> $ make -C <kernelsrcdir>/tools iio
>>> $ make -C <kernelsrcdir>/tools/iio
>>
>> Hi,
>> Did you do any testing with O=<outputdir> ?
> 
> I hadn't, but I just checked with:
> 
> $ make -C <kernelsrcdir>/tools iio O=<outputdir>
> 
> Although there is an iio folder created under <outputdir>, the actual
> binaries are still built under <kernelsrcdir>/tools/iio. So I think
> there is some more work to be done to respect the O= option passed from
> command line.
> 
> The behavior remains same with or without my patch.

Yes, agreed.  This is a common problem in tools.

Thanks.

-- 
~Randy

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

* Re: [PATCH v2] tools/iio: Use include/uapi with __EXPORTED_HEADERS__
  2017-04-21 12:31 [PATCH v2] tools/iio: Use include/uapi with __EXPORTED_HEADERS__ Sekhar Nori
  2017-04-23  2:22 ` Randy Dunlap
@ 2017-04-27  5:33 ` Jonathan Cameron
  1 sibling, 0 replies; 5+ messages in thread
From: Jonathan Cameron @ 2017-04-27  5:33 UTC (permalink / raw)
  To: Sekhar Nori
  Cc: Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler,
	linux-iio, linux-kernel, Randy Dunlap

On 21/04/17 13:31, Sekhar Nori wrote:
> Use the local uapi headers to keep in sync with "recently" added enum
> values like IIO_UVINDEX.
> 
> Build tested using:
> $ make -C <kernelsrcdir> tools/iio
> $ make -C <kernelsrcdir>/tools iio
> $ make -C <kernelsrcdir>/tools/iio
> 
> This follows a strategy similar to that used by tools/hv, tools/net and
> tools/leds among others.
> 
> Cc: Randy Dunlap <rdunlap@infradead.org>
> Cc: Jonathan Cameron <jic23@kernel.org>
> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Applied to the togreg branch of iio.git and pushed out as testing for the
autobuilders to ignore it.

Jonathan
> ---
> Change since v1:
> Shift to a strategy similar to that used by other makefiles in
> tools/ folder. v1 posting here: https://patchwork.kernel.org/patch/9674937/
> 
>  tools/iio/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/iio/Makefile b/tools/iio/Makefile
> index 5446d625e17d..8f08e03a9a5e 100644
> --- a/tools/iio/Makefile
> +++ b/tools/iio/Makefile
> @@ -1,5 +1,5 @@
>  CC = $(CROSS_COMPILE)gcc
> -CFLAGS += -Wall -g -D_GNU_SOURCE
> +CFLAGS += -Wall -g -D_GNU_SOURCE -D__EXPORTED_HEADERS__ -I../../include/uapi -I../../include
>  
>  BINDIR=usr/bin
>  INSTALL_PROGRAM=install -m 755 -p
> 

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

end of thread, other threads:[~2017-04-27  5:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-21 12:31 [PATCH v2] tools/iio: Use include/uapi with __EXPORTED_HEADERS__ Sekhar Nori
2017-04-23  2:22 ` Randy Dunlap
2017-04-24 11:40   ` Sekhar Nori
2017-04-24 15:30     ` Randy Dunlap
2017-04-27  5:33 ` Jonathan Cameron

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.