Changeset 747d2b1


Ignore:
Timestamp:
05/29/15 02:30:00 (9 years ago)
Author:
Hal Finkel <hfinkel@…>
Branches:
master
Children:
493cb97
Parents:
10599da
git-author:
Hal Finkel <hfinkel@…> (05/29/15 02:30:00)
git-committer:
Hal Finkel <hfinkel@…> (05/29/15 02:30:00)
Message:

get newer binutils; we do have them at ALCF

File:
1 edited

Legend:

Unmodified
Added
Removed
  • memlog2dot

    r10599da r747d2b1  
    1111  print "Usage: $0 <memlog file> [<output directory>]\n"; 
    1212  exit 1; 
     13} 
     14 
     15# The version of addr2line and friends that you use can make a big difference, 
     16# especially on BE ppc64, where older versions of addr2line did not account 
     17# correctly for the function descriptor setup. At ALCF, on the BG/Q, we have 
     18# newer versions not in the default search path (from bgclang). 
     19my $alcf_bu_dir = '/soft/compilers/bgclang/current/binutils/bin'; 
     20if (-d $alcf_bu_dir) { 
     21  $ENV{'PATH'} = $alcf_bu_dir . ':' . $ENV{'PATH'}; 
    1322} 
    1423 
Note: See TracChangeset for help on using the changeset viewer.