Issue 8109 - set_soenv.in
Summary: set_soenv.in
Status: CLOSED FIXED
Alias: None
Product: porting
Classification: Code
Component: code (show other issues)
Version: 643
Hardware: SGI IRIX
: P3 Trivial (vote)
Target Milestone: ---
Assignee: foskey
QA Contact: issues@porting
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-10-07 05:43 UTC by nickb
Modified: 2003-03-17 00:21 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments
config_office/set_soenv.in - allow gcc 2 and gcc 3 (1.07 KB, patch)
2002-10-07 08:24 UTC, nickb
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this issue.
Description nickb 2002-10-07 05:43:49 UTC
Seems to have changed from OOO_STABLE_1, and now sets the object directory as if
MipsPro was been used, if gcc-2.95.3 is used (seems like it should work if gcc-3).
CVS access seems to be down at the moment, but the relevant section is:

$BIG_SVX = "TRUE";
if($USE_GCC3 eq "TRUE") {
    $COM  = "GCC";
    $OUTPATH = "unxirgm";
    $CVER = "C295";
} else {
    $COM   = "C730";
    $CVER  = "C730";
    $OUTPATH = "unxirxm3";
}

Which is obviously incorrect! It should look like this:
      $BIG_SVX        = "TRUE";
      if ($CC eq "gcc" ) {
              $COM          = "GCC";
              $OUTPATH        = "unxirgm";
              if ($USE_GCC3 eq  "TRUE") {
                $CVER           = "C295";
              } else {
                $CVER           = "C295";
              }
      } else {
        $COM            = "C730";
        $CVER           = "C730";
        $OUTPATH        = "unxirxm3";
      }
Comment 1 nickb 2002-10-07 08:24:50 UTC
Created attachment 3072 [details]
config_office/set_soenv.in - allow gcc 2 and gcc 3
Comment 2 nickb 2002-10-31 00:21:09 UTC
Confirming Issue.
Comment 3 foskey 2002-11-14 13:27:12 UTC
Created test version and building on OO643C,  will apply once tested.
Comment 4 foskey 2002-11-28 13:21:18 UTC
Applied to OO643C
Comment 5 foskey 2002-11-28 13:30:52 UTC
resolved
Comment 6 foskey 2003-03-17 00:09:48 UTC
This is currently installed on all working versions.
Comment 7 foskey 2003-03-17 00:21:17 UTC
closing issue.