mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-25 19:42:19 +00:00
Build breaks when executing make with run_tests for sub-folders
under powerpc. This is because, CFLAGS and GIT_VERSION macros are
defined in Makefile of toplevel powerpc folder.
make: Entering directory '/home/maddy/linux/tools/testing/selftests/powerpc/mm'
gcc hugetlb_vs_thp_test.c ../harness.c ../utils.c -o /home/maddy/selftest_output//hugetlb_vs_thp_test
hugetlb_vs_thp_test.c:6:10: fatal error: utils.h: No such file or directory
6 | #include "utils.h"
| ^~~~~~~~~
compilation terminated.
Fix this by adding the flags.mk in each sub-folder Makefile. Also remove
the CFLAGS and GIT_VERSION macros from powerpc/ folder Makefile since
the same is definied in flags.mk
Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20240229093711.581230-3-maddy@linux.ibm.com
22 lines
537 B
Makefile
22 lines
537 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
TEST_GEN_PROGS := gettimeofday context_switch fork mmap_bench futex_bench null_syscall
|
|
TEST_GEN_FILES := exec_target
|
|
|
|
TEST_FILES := settings
|
|
|
|
top_srcdir = ../../../../..
|
|
include ../../lib.mk
|
|
include ../flags.mk
|
|
|
|
CFLAGS += -O2
|
|
|
|
$(TEST_GEN_PROGS): ../harness.c
|
|
|
|
$(OUTPUT)/context_switch: ../utils.c
|
|
$(OUTPUT)/context_switch: CFLAGS += -maltivec -mvsx -mabi=altivec
|
|
$(OUTPUT)/context_switch: LDLIBS += -lpthread
|
|
|
|
$(OUTPUT)/fork: LDLIBS += -lpthread
|
|
|
|
$(OUTPUT)/exec_target: CFLAGS += -static -nostartfiles
|