#17630: Further clean up of ATLAS (or equivalent BLAS) linking
-------------------------------------+-------------------------------------
       Reporter:  jpflori            |        Owner:
           Type:  defect             |       Status:  needs_work
       Priority:  major              |    Milestone:  sage-6.5
      Component:  packages:          |   Resolution:
  standard                           |    Merged in:
       Keywords:                     |    Reviewers:
        Authors:  Jean-Pierre Flori  |  Work issues:
Report Upstream:  N/A                |       Commit:
         Branch:  u/fbissey/blas     |  d448831b044c43b1190ece92ac6c4b60eb332d7c
   Dependencies:  #18777, #18778     |     Stopgaps:
-------------------------------------+-------------------------------------

Comment (by jdemeyer):

 I would move `cblas_libs()` to `sage/env.py`, analogous to
 `sage_include_directories()`.

 And this
 {{{
 f = open(os.path.join(SAGE_LOCAL, 'share/cblas_config'), 'r')
 libs = f.readline().split()
 f.close()
 return libs
 }}}
 can be written as
 {{{
 with open(os.path.join(SAGE_SHARE, 'cblas_config')) as f:
     return f.readline().split()
 }}}

--
Ticket URL: <http://trac.sagemath.org/ticket/17630#comment:46>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/d/optout.

Reply via email to