Skip to content

Commit

Permalink
samples: pidfd: build sample program for target architecture
Browse files Browse the repository at this point in the history
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: Masahiro Yamada <[email protected]>
Acked-by: Sam Ravnborg <[email protected]>
  • Loading branch information
masahir0y committed May 17, 2020
1 parent 28949b8 commit 60fb0b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion samples/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ config SAMPLE_HIDRAW

config SAMPLE_PIDFD
bool "pidfd sample"
depends on HEADERS_INSTALL
depends on CC_CAN_LINK && HEADERS_INSTALL

config SAMPLE_SECCOMP
bool "Build seccomp sample code"
Expand Down
8 changes: 4 additions & 4 deletions samples/pidfd/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: GPL-2.0

hostprogs := pidfd-metadata
always-y := $(hostprogs)
HOSTCFLAGS_pidfd-metadata.o += -I$(objtree)/usr/include
all: pidfd-metadata
usertprogs := pidfd-metadata
always-y := $(userprogs)

userccflags += -I usr/include

0 comments on commit 60fb0b1

Please sign in to comment.