Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1285987

[PATCH 01/12] selftests/x86: Extend Makefile to allow 64-bit only tests

From Andy Lutomirski <luto@kernel.org>
Newsgroups linux.kernel
Subject [PATCH 01/12] selftests/x86: Extend Makefile to allow 64-bit only tests
Date 2015-12-07 23:00 +0100
Message-ID <qDbZ9-1Mo-35@gated-at.bofh.it> (permalink)
References <qDbZ7-1Mo-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


There aren't any yet, but there might be a few some day.

Signed-off-by: Andy Lutomirski <luto@kernel.org>
---
 tools/testing/selftests/x86/Makefile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tools/testing/selftests/x86/Makefile b/tools/testing/selftests/x86/Makefile
index 389701f59940..a460fe7c5365 100644
--- a/tools/testing/selftests/x86/Makefile
+++ b/tools/testing/selftests/x86/Makefile
@@ -8,8 +8,9 @@ TARGETS_C_BOTHBITS := single_step_syscall sysret_ss_attrs ldt_gdt syscall_nt ptr
 TARGETS_C_32BIT_ONLY := entry_from_vm86 syscall_arg_fault sigreturn test_syscall_vdso unwind_vdso
 
 TARGETS_C_32BIT_ALL := $(TARGETS_C_BOTHBITS) $(TARGETS_C_32BIT_ONLY)
+TARGETS_C_64BIT_ALL := $(TARGETS_C_BOTHBITS) $(TARGETS_C_64BIT_ONLY)
 BINARIES_32 := $(TARGETS_C_32BIT_ALL:%=%_32)
-BINARIES_64 := $(TARGETS_C_BOTHBITS:%=%_64)
+BINARIES_64 := $(TARGETS_C_64BIT_ALL:%=%_64)
 
 CFLAGS := -O2 -g -std=gnu99 -pthread -Wall
 
@@ -37,7 +38,7 @@ clean:
 $(TARGETS_C_32BIT_ALL:%=%_32): %_32: %.c
 	$(CC) -m32 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl
 
-$(TARGETS_C_BOTHBITS:%=%_64): %_64: %.c
+$(TARGETS_C_64BIT_ALL:%=%_64): %_64: %.c
 	$(CC) -m64 -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl
 
 # x86_64 users should be encouraged to install 32-bit libraries
-- 
2.5.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH 01/12] selftests/x86: Extend Makefile to allow 64-bit only tests Andy Lutomirski <luto@kernel.org> - 2015-12-07 23:00 +0100
  Re: [PATCH 01/12] selftests/x86: Extend Makefile to allow 64-bit  only tests Borislav Petkov <bp@alien8.de> - 2015-12-08 10:40 +0100
    Re: [PATCH 01/12] selftests/x86: Extend Makefile to allow 64-bit only tests Andy Lutomirski <luto@amacapital.net> - 2015-12-09 20:00 +0100
  Re: [PATCH 01/12] selftests/x86: Extend Makefile to allow 64-bit only tests Shuah Khan <shuahkhan@gmail.com> - 2015-12-09 20:20 +0100
    Re: [PATCH 01/12] selftests/x86: Extend Makefile to allow 64-bit only tests Andy Lutomirski <luto@amacapital.net> - 2015-12-09 20:30 +0100
      Re: [PATCH 01/12] selftests/x86: Extend Makefile to allow 64-bit only tests Shuah Khan <shuahkhan@gmail.com> - 2015-12-09 21:00 +0100

csiph-web