Commit 82d00a93 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

samples: hidraw: build sample program for target architecture



This userspace program includes UAPI headers exported to usr/include/.
'make headers' always works for the target architecture (i.e. the same
architecture as the kernel), so the sample program should be built for
the target as well. Kbuild now supports 'userprogs' for that.

I also guarded the CONFIG option by 'depends on CC_CAN_LINK' because
$(CC) may not provide libc.

Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
Acked-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent 87ecdf4f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ config SAMPLE_CONNECTOR

config SAMPLE_HIDRAW
	bool "hidraw sample"
	depends on HEADERS_INSTALL
	depends on CC_CAN_LINK && HEADERS_INSTALL

config SAMPLE_PIDFD
	bool "pidfd sample"
+3 −6
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
# List of programs to build
hostprogs := hid-example
always-y := $(hostprogs)
userprogs := hid-example
always-y := $(userprogs)

HOSTCFLAGS_hid-example.o += -I$(objtree)/usr/include

all: hid-example
userccflags += -I usr/include