Get $Config{ccversion} or $Config{gccversion} filled in on Win32
authorSteve Hay <SteveHay@planit.com>
Mon, 17 Jan 2005 16:57:10 +0000 (16:57 +0000)
committerSteve Hay <SteveHay@planit.com>
Mon, 17 Jan 2005 16:57:10 +0000 (16:57 +0000)
p4raw-id: //depot/perl@23806

win32/config_sh.PL

index e1bc2dd..6381cc9 100644 (file)
@@ -72,6 +72,22 @@ $opt{'version_patchlevel_string'} .= " patchlevel $opt{PERL_PATCHLEVEL}" if exis
 
 $opt{'osvers'} = join '.', (Win32::GetOSVersion())[1,2];
 
+if (exists $opt{cc}) {
+    # cl and bcc32 version detection borrowed from Test::Smoke's configsmoke.pl
+    if ($opt{cc} eq 'cl') {
+        my $output = `cl --version 2>&1`;
+        $opt{ccversion} = $output =~ /^.*Version\s+([\d.]+)/ ? $1 : '?';
+    }
+    elsif ($opt{cc} eq 'bcc32') {
+        my $output = `bcc32 --version 2>&1`;
+        $opt{ccversion} = $output =~ /(\d+.*)/ ? $1 : '?';
+        $opt{ccversion} =~ s/\s+copyright.*//i;
+    }
+    elsif ($opt{cc} eq 'gcc') {
+        chomp($opt{gccversion} = `gcc -dumpversion`);
+    }
+}
+
 $opt{'cf_by'} = $ENV{USERNAME} unless $opt{'cf_by'};
 $opt{'cf_email'} = $opt{'cf_by'} . '@' . (gethostbyname('localhost'))[0]
        unless $opt{'cf_email'};