From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753195AbcEMMGW (ORCPT ); Fri, 13 May 2016 08:06:22 -0400 Received: from mail-pf0-f193.google.com ([209.85.192.193]:34688 "EHLO mail-pf0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752701AbcEMMGT (ORCPT ); Fri, 13 May 2016 08:06:19 -0400 From: Muhammad Falak R Wani To: Shuah Khan Cc: Prarit Bhargava , linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] tools: testing: define the _GNU_SOURCE macro Date: Fri, 13 May 2016 17:35:43 +0530 Message-Id: <1463141167-21889-1-git-send-email-falakreyaz@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add the macro _GNU_SOURCE, so that compilation does not terminate. Signed-off-by: Muhammad Falak R Wani --- tools/testing/selftests/intel_pstate/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/intel_pstate/run.sh b/tools/testing/selftests/intel_pstate/run.sh index bdaf37e..7868c10 100755 --- a/tools/testing/selftests/intel_pstate/run.sh +++ b/tools/testing/selftests/intel_pstate/run.sh @@ -32,7 +32,7 @@ EVALUATE_ONLY=0 max_cpus=$(($(nproc)-1)) # compile programs -gcc -o aperf aperf.c -lm +gcc aperf.c -Wall -D_GNU_SOURCE -o aperf -lm [ $? -ne 0 ] && echo "Problem compiling aperf.c." && exit 1 gcc -o msr msr.c -lm [ $? -ne 0 ] && echo "Problem compiling msr.c." && exit 1 -- 1.9.1