mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-07 03:50:59 +00:00
498b473af9
Fix the typo of ARCH when running 'make kselftests'. Change the 'X86' to 'x86'. Test by compilation. Signed-off-by: Phong Tran <tranmanphong@gmail.com> Cc: David Herrmann <dh.herrmann@gmail.com> Cc: Hugh Dickins <hughd@google.com> Cc: Shuah Khan <shuah.kh@samsung.com> Cc: Sam Ravnborg <sam@ravnborg.org> Cc: Michal Marek <mmarek@suse.cz> Cc: Shuah Khan <shuahkh@osg.samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
26 lines
502 B
Makefile
26 lines
502 B
Makefile
uname_M := $(shell uname -m 2>/dev/null || echo not)
|
|
ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/)
|
|
ifeq ($(ARCH),i386)
|
|
ARCH := x86
|
|
CFLAGS := -DCONFIG_X86_32 -D__i386__
|
|
endif
|
|
ifeq ($(ARCH),x86_64)
|
|
ARCH := x86
|
|
CFLAGS := -DCONFIG_X86_64 -D__x86_64__
|
|
endif
|
|
|
|
CFLAGS += -I../../../../usr/include/
|
|
|
|
all:
|
|
ifeq ($(ARCH),x86)
|
|
gcc $(CFLAGS) msgque.c -o msgque_test
|
|
else
|
|
echo "Not an x86 target, can't build msgque selftest"
|
|
endif
|
|
|
|
run_tests: all
|
|
./msgque_test
|
|
|
|
clean:
|
|
rm -fr ./msgque_test
|