From 9913adee522ad312f60d0f24722d0144ffb12656 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Mon, 24 Oct 2011 18:01:45 +0200 Subject: [PATCH] In bisect-runner.pl, default to 'cc' not 'gcc'. With this, bisect-runner.pl can build on Solaris (at least x86 Solaris) back to 5.000. --- Porting/bisect-runner.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Porting/bisect-runner.pl b/Porting/bisect-runner.pl index bcd8e07..6fecdd8 100755 --- a/Porting/bisect-runner.pl +++ b/Porting/bisect-runner.pl @@ -52,8 +52,8 @@ my %defines = ( usedevel => '', optimize => '-g', - cc => 'ccache gcc', - ld => 'gcc', + cc => 'ccache cc', + ld => 'cc', ($linux64 ? (libpth => \@paths) : ()), ); -- 1.8.3.1