selftests/futex: fix build for clang
[ Upstream commit 03cab65a07e083b6c1010fbc8f9b817e9aca75d9 ] Don't use the test-specific header files as source files to force a target dependency, as clang will complain if more than one source file is used for a compile command with a single '-o' flag. Use the proper Makefile variables instead as defined in tools/testing/selftests/lib.mk. Signed-off-by: Ricardo Cañuelo <ricardo.canuelo@collabora.com> Reviewed-by: André Almeida <andrealmeid@igalia.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
c1f0defecb
commit
fdf6807606
@@ -3,11 +3,11 @@ INCLUDES := -I../include -I../../
|
|||||||
CFLAGS := $(CFLAGS) -g -O2 -Wall -D_GNU_SOURCE -pthread $(INCLUDES)
|
CFLAGS := $(CFLAGS) -g -O2 -Wall -D_GNU_SOURCE -pthread $(INCLUDES)
|
||||||
LDLIBS := -lpthread -lrt
|
LDLIBS := -lpthread -lrt
|
||||||
|
|
||||||
HEADERS := \
|
LOCAL_HDRS := \
|
||||||
../include/futextest.h \
|
../include/futextest.h \
|
||||||
../include/atomic.h \
|
../include/atomic.h \
|
||||||
../include/logging.h
|
../include/logging.h
|
||||||
TEST_GEN_FILES := \
|
TEST_GEN_PROGS := \
|
||||||
futex_wait_timeout \
|
futex_wait_timeout \
|
||||||
futex_wait_wouldblock \
|
futex_wait_wouldblock \
|
||||||
futex_requeue_pi \
|
futex_requeue_pi \
|
||||||
@@ -21,5 +21,3 @@ TEST_PROGS := run.sh
|
|||||||
top_srcdir = ../../../../..
|
top_srcdir = ../../../../..
|
||||||
KSFT_KHDR_INSTALL := 1
|
KSFT_KHDR_INSTALL := 1
|
||||||
include ../../lib.mk
|
include ../../lib.mk
|
||||||
|
|
||||||
$(TEST_GEN_FILES): $(HEADERS)
|
|
||||||
|
Reference in New Issue
Block a user