Skip to content

Commit 9395cd7

Browse files
committed
Merge tag 'landlock-6.0-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/mic/linux
Pull landlock fix from Mickaël Salaün: "Fix out-of-tree builds for Landlock tests" * tag 'landlock-6.0-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/mic/linux: selftests/landlock: Fix out-of-tree builds
2 parents a7b7751 + a525405 commit 9395cd7

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed
Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
# SPDX-License-Identifier: GPL-2.0
2+
#
3+
# First run: make -C ../../../.. headers_install
24

35
CFLAGS += -Wall -O2 $(KHDR_INCLUDES)
6+
LDLIBS += -lcap
7+
8+
LOCAL_HDRS += common.h
49

510
src_test := $(wildcard *_test.c)
611

712
TEST_GEN_PROGS := $(src_test:.c=)
813

914
TEST_GEN_PROGS_EXTENDED := true
1015

11-
OVERRIDE_TARGETS := 1
12-
top_srcdir := ../../../..
13-
include ../lib.mk
14-
15-
khdr_dir = $(top_srcdir)/usr/include
16+
# Static linking for short targets:
17+
$(TEST_GEN_PROGS_EXTENDED): LDFLAGS += -static
1618

17-
$(OUTPUT)/true: true.c
18-
$(LINK.c) $< $(LDLIBS) -o $@ -static
19+
include ../lib.mk
1920

20-
$(OUTPUT)/%_test: %_test.c $(khdr_dir)/linux/landlock.h ../kselftest_harness.h common.h
21-
$(LINK.c) $< $(LDLIBS) -o $@ -lcap -I$(khdr_dir)
21+
# Static linking for targets with $(OUTPUT)/ prefix:
22+
$(TEST_GEN_PROGS_EXTENDED): LDFLAGS += -static

tools/testing/selftests/lib.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ endif
4242
selfdir = $(realpath $(dir $(filter %/lib.mk,$(MAKEFILE_LIST))))
4343
top_srcdir = $(selfdir)/../../..
4444

45+
ifeq ($(KHDR_INCLUDES),)
46+
KHDR_INCLUDES := -isystem $(top_srcdir)/usr/include
47+
endif
48+
4549
# The following are built by lib.mk common compile rules.
4650
# TEST_CUSTOM_PROGS should be used by tests that require
4751
# custom build rule and prevent common build rule use.

0 commit comments

Comments
 (0)