[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <87efxiayw2.fsf@concordia.ellerman.id.au>
Date: Tue, 28 Mar 2017 14:00:45 +1100
From: Michael Ellerman <mpe@...erman.id.au>
To: Fathi Boudra <fathi.boudra@...aro.org>,
linux-kselftest@...r.kernel.org, Shuah Khan <shuah@...nel.org>
Cc: linux-kernel@...r.kernel.org,
Bamvor Jian Zhang <bamvor.zhangjian@...aro.org>,
Fathi Boudra <fathi.boudra@...aro.org>
Subject: Re: [PATCH] selftests: gpio: fix Makefile
Fathi Boudra <fathi.boudra@...aro.org> writes:
> diff --git a/tools/testing/selftests/gpio/Makefile b/tools/testing/selftests/gpio/Makefile
> index 205e4d10e085..714f1f7df04d 100644
> --- a/tools/testing/selftests/gpio/Makefile
> +++ b/tools/testing/selftests/gpio/Makefile
> @@ -1,23 +1,24 @@
> +CFLAGS += -O2 -g -std=gnu99 -Wall
> +CFLAGS += -I../../../../include/uapi/ -I../../../../include/
Those are kernel headers, they *might* work in userspace but they're not
designed to.
Use the exported headers:
CFLAGS += -I../../../../usr/include
If they're not there, then the user can install them, or fall back to
the system headers.
> +CFLAGS += $(shell pkg-config --cflags mount)
> +LDLIBS += $(shell pkg-config --libs mount)
What if pkg-config isn't installed?
cheers
Powered by blists - more mailing lists