Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752593AbdF1PNC (ORCPT ); Wed, 28 Jun 2017 11:13:02 -0400 Received: from resqmta-po-12v.sys.comcast.net ([96.114.154.171]:56780 "EHLO resqmta-po-12v.sys.comcast.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751581AbdF1PMV (ORCPT ); Wed, 28 Jun 2017 11:12:21 -0400 Reply-To: shuah@kernel.org Subject: Re: [PATCH] selftests: net: use LDLIBS instead of LDFLAGS to link against libnuma To: Fathi Boudra Cc: linux-kselftest@vger.kernel.org, "linux-kernel@vger.kernel.org" , SeongJae Park , Shuah Khan References: <20170628111958.22405-1-fathi.boudra@linaro.org> From: Shuah Khan Message-ID: <1039eb4d-76a2-432f-f3d5-06fd8a5b66af@kernel.org> Date: Wed, 28 Jun 2017 09:12:19 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit X-CMAE-Envelope: MS4wfCG0O4FNKS/BQTQ62FfrloMoDwWPrzp7sweiJKj2+rAWL4wrAQxD4lcuT6K8tsP1z398+m+GSGyKOskaQrmsi7mmNqt0MKccauEwBLWmh6cb4tq2Bw1m tKN2yx/Xwat/usxePf7Hig6jaE/iR4moRTg4Y7BpxRtrKbwMZu0ZcT6wGC7xOrir2RM5Lmb93Vx/KHZN6Z76j+a0fNn9byQvIYueqBbvdIEeCqkR6CaKNbT+ I1Q2Hizfu533e0EgOzEVl6+sdJs8IR9jJa6xp8runtmJuWm6o1f7ZguGDwZtAXnYX/Pl58aNNqhsT7A7OSTgzQ== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2545 Lines: 63 On 06/28/2017 08:36 AM, Fathi Boudra wrote: > On 28 June 2017 at 17:19, Shuah Khan wrote: >> On 06/28/2017 05:19 AM, Fathi Boudra wrote: >>> reuseport_bpf_numa fails to build with undefined reference: >>> >>> aarch64-linaro-linux-gcc >>> --sysroot=/build/tmp-rpb-glibc/sysroots/hikey -Wall >>> -Wl,--no-as-needed -O2 -g -I../../../../usr/include/ -Wl,-O1 >>> -Wl,--hash-style=gnu -Wl,--as-needed -lnuma reuseport_bpf_numa.c >>> -o >>> /build/tmp-rpb-glibc/work/hikey-linaro-linux/kselftests/4.12-r0/linux-4.12-rc7/tools/testing/selftests/net/reuseport_bpf_numa >>> /tmp/ccfUuExT.o: In function `send_from_node': >>> /build/tmp-rpb-glibc/work/hikey-linaro-linux/kselftests/4.12-r0/linux-4.12-rc7/tools/testing/selftests/net/reuseport_bpf_numa.c:138: >>> undefined reference to `numa_run_on_node' >>> /tmp/ccfUuExT.o: In function `main': >>> /build/tmp-rpb-glibc/work/hikey-linaro-linux/kselftests/4.12-r0/linux-4.12-rc7/tools/testing/selftests/net/reuseport_bpf_numa.c:230: >>> undefined reference to `numa_available' >>> /build/tmp-rpb-glibc/work/hikey-linaro-linux/kselftests/4.12-r0/linux-4.12-rc7/tools/testing/selftests/net/reuseport_bpf_numa.c:233: >>> undefined reference to `numa_max_node' >>> >>> Use LDLIBS instead of LDFLAGS to properly link against libnuma. >>> >>> Signed-off-by: Fathi Boudra >> >> Did you try this on linux-ksefltest next? It has the fix for this. > > yes, I tried linux-ksefltest next and can reproduce. My question is whether this fix is on top of linux-kselftest next. > >> thanks, >> -- Shuah >>> --- >>> tools/testing/selftests/net/Makefile | 2 +- >>> 1 file changed, 1 insertion(+), 1 deletion(-) >>> >>> diff --git a/tools/testing/selftests/net/Makefile b/tools/testing/selftests/net/Makefile >>> index 35cbb4cba410..17c732a19c4c 100644 >>> --- a/tools/testing/selftests/net/Makefile >>> +++ b/tools/testing/selftests/net/Makefile >>> @@ -3,7 +3,7 @@ >>> CFLAGS = -Wall -Wl,--no-as-needed -O2 -g >>> CFLAGS += -I../../../../usr/include/ >>> >>> -reuseport_bpf_numa: LDFLAGS += -lnuma >>> +reuseport_bpf_numa: LDLIBS += -lnum >>> >>> TEST_PROGS := run_netsocktests run_afpackettests test_bpf.sh netdevice.sh >>> TEST_GEN_FILES = socket > Please redo the patch on top of SeongJae Park's fix selftest/net/Makefile: Specify output with $(OUTPUT) btw - with the the above fix, I don't see any failures on x86_64. I am curious why it fails in cross-build? Could you figure out if your cross-build environment is good. thanks, -- Shuah