From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Kacur Subject: [PATCH 1/2] rt-tests: Makefile: Add NUMA compile option. Date: Wed, 20 Jan 2010 16:36:23 +0100 Message-ID: <1264001784-11965-2-git-send-email-jkacur@redhat.com> References: <1264001784-11965-1-git-send-email-jkacur@redhat.com> Cc: lkml , rt-users , "Nikita V. Youshchenko" , John Kacur To: Clark Williams , Thomas Gleixner , Carsten Emde Return-path: Received: from mail-fx0-f220.google.com ([209.85.220.220]:48598 "EHLO mail-fx0-f220.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753494Ab0ATPoO (ORCPT ); Wed, 20 Jan 2010 10:44:14 -0500 In-Reply-To: <1264001784-11965-1-git-send-email-jkacur@redhat.com> Sender: linux-rt-users-owner@vger.kernel.org List-ID: This adds a NUMA compile option, and links to numa only for the tests that need it. (Currently that is only cyclictest) If you want to build with the NUMA feature, then define NUMA to anything. Eg., make NUMA=1 This only adds support to the Makefile. Further patches are required to make this work in cyclictest itself. Signed-off-by: John Kacur --- Makefile | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5db524d..4e1a7e3 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ VERSION_STRING = 0.61 TARGETS = cyclictest signaltest pi_stress \ hwlatdetect rt-migrate-test ptsematest sigwaittest svsematest \ sendme pip -LIBS = -lpthread -lrt -lnuma +LIBS = -lpthread -lrt EXTRA_LIBS ?= -ldl # for get_cpu DESTDIR ?= prefix ?= /usr/local @@ -19,6 +19,11 @@ else CFLAGS += -O0 -g endif +ifdef NUMA + CFLAGS += -DNUMA + NUMA_LIBS = -lnuma +endif + VPATH = src/cyclictest: VPATH += src/signaltest: VPATH += src/pi_tests: @@ -36,7 +41,7 @@ VPATH += src/lib all: $(TARGETS) cyclictest: cyclictest.o rt-utils.o - $(CC) $(CFLAGS) -o $@ $^ $(LIBS) + $(CC) $(CFLAGS) -o $@ $^ $(LIBS) $(NUMA_LIBS) signaltest: signaltest.o rt-utils.o $(CC) $(CFLAGS) -o $@ $^ $(LIBS) -- 1.6.6