Skip to content

Commit

Permalink
samples: vfs: build sample programs for target architecture
Browse files Browse the repository at this point in the history
These userspace programs include 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 programs 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 37249f5 commit 28949b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion samples/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ config SAMPLE_ANDROID_BINDERFS

config SAMPLE_VFS
bool "Build example programs that use new VFS system calls"
depends on HEADERS_INSTALL
depends on CC_CAN_LINK && HEADERS_INSTALL
help
Build example userspace programs that use new VFS system calls such
as mount API and statx(). Note that this is restricted to the x86
Expand Down
11 changes: 3 additions & 8 deletions samples/vfs/Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
# SPDX-License-Identifier: GPL-2.0-only
# List of programs to build
hostprogs := \
test-fsmount \
test-statx
userprogs := test-fsmount test-statx
always-y := $(userprogs)

always-y := $(hostprogs)

HOSTCFLAGS_test-fsmount.o += -I$(objtree)/usr/include
HOSTCFLAGS_test-statx.o += -I$(objtree)/usr/include
userccflags += -I usr/include

0 comments on commit 28949b8

Please sign in to comment.