提交 8d67621d 编写于 作者: J Jan Lana 提交者: Richard Levitte

fix Solaris OS detection in config.pm

Reviewed-by: NTim Hudson <tjh@openssl.org>
Reviewed-by: NRichard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15439)
上级 817d408d
......@@ -197,13 +197,15 @@ sub is_sco_uname {
open UNAME, "uname -X 2>/dev/null|" or return '';
my $line = "";
my $os = "";
while ( <UNAME> ) {
chop;
$line = $_ if m@^Release@;
$os = $_ if m@^System@;
}
close UNAME;
return undef if $line eq '';
return undef if $line eq '' or $os eq 'System = SunOS';
my @fields = split(/\s+/, $line);
return $fields[2];
......@@ -238,7 +240,7 @@ sub get_sco_type {
sub guess_system {
($SYSTEM, undef, $RELEASE, $VERSION, $MACHINE) = POSIX::uname();
my $sys = "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}";
# Special-cases for ISC, SCO, Unixware
my $REL = is_sco_uname();
if ( defined $REL ) {
......@@ -360,29 +362,20 @@ sub determine_compiler_settings {
}
if ( $SYSTEM eq "SunOS" ) {
# check for WorkShop C, expected output is "cc: blah-blah C x.x"
# check for Oracle Developer Studio, expected output is "cc: blah-blah C x.x blah-blah"
my $v = `(cc -V 2>&1) 2>/dev/null | egrep -e '^cc: .* C [0-9]\.[0-9]'`;
chomp $v;
$v =~ s/.* C \([0-9]\)\.\([0-9]\).*/$1.$2/;
my @numbers = split /\./, $v;
my @numbers =
( $v =~ m/^.* C ([0-9]+)\.([0-9]+) .*/ );
my @factors = (100, 1);
$v = 0;
while (@numbers && @factors) {
$v += shift(@numbers) * shift(@factors)
}
if ( $v > 40000 && $MACHINE ne 'i86pc' ) {
if ($v > 500) {
$CC = 'cc';
$CCVENDOR = ''; # Determine later
$CCVENDOR = 'sun';
$CCVER = $v;
if ( $CCVER == 50000 ) {
print <<'EOF';
WARNING! Found WorkShop C 5.0.
Make sure you have patch #107357-01 or later applied.
EOF
maybe_abort();
}
}
}
}
......@@ -685,11 +678,12 @@ EOF
sub {
my $KERNEL_BITS = $ENV{KERNEL_BITS};
my $ISA64 = `isainfo 2>/dev/null | grep sparcv9`;
if ( $ISA64 ne "" && $KERNEL_BITS eq '' ) {
my $KB = $KERNEL_BITS // '64';
if ( $ISA64 ne "" && $KB eq '64' ) {
if ( $CCVENDOR eq "sun" && $CCVER >= 500 ) {
print <<EOF;
WARNING! To build 64-bit package, do this:
$WHERE/Configure solaris64-sparcv9-cc
WARNING! To build 32-bit package, do this:
$WHERE/Configure solaris-sparcv9-cc
EOF
maybe_abort();
} elsif ( $CCVENDOR eq "gnu" && $GCC_ARCH eq "-m64" ) {
......@@ -702,7 +696,7 @@ WARNING! To build 32-bit package, do this:
$WHERE/Configure solaris-sparcv9-gcc
EOF
maybe_abort();
return { target => "solaris64-sparcv9" };
return { target => "solaris64-sparcv9-gcc" };
} elsif ( $GCC_ARCH eq "-m32" ) {
print <<EOF;
NOTICE! If you *know* that your GNU C supports 64-bit/V9 ABI and you wish
......@@ -712,9 +706,9 @@ EOF
maybe_abort();
}
}
return { target => "solaris64-sparcv9" }
if $ISA64 ne "" && $KERNEL_BITS eq '64';
return { target => "solaris-sparcv9" };
return { target => "solaris64-sparcv9-cc" }
if $ISA64 ne "" && $KB eq '64';
return { target => "solaris-sparcv9-cc" };
}
],
[ 'sun4m-.*-solaris2', { target => "solaris-sparcv8" } ],
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册