From b07dea49d4dc4eae22f16d8f911d172d4225b0f1 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sat, 16 May 2020 15:55:46 +0000 Subject: [PATCH] scripts/run-regression-tests: Do not create a -.o file git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@8922 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scripts/run-regression-tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-regression-tests b/scripts/run-regression-tests index 97fb9f6a0..1de609dc2 100755 --- a/scripts/run-regression-tests +++ b/scripts/run-regression-tests @@ -713,7 +713,7 @@ do # v4.13) and commit 6f303d60534c ("gcc-9: silence 'address-of-packed-member' # warning"; v5.1). for w in -Wno-format-truncation -Wno-format-overflow -Wno-int-in-bool-context -Wno-address-of-packed-member; do - if gcc -c -xc - "$w" &/dev/null; then + if gcc -c -xc -E - "$w" &/dev/null; then KCFLAGS+=" $w" fi done