Changeset 2560 in Sophya for trunk/SophyaLib/Mgr/mkmf


Ignore:
Timestamp:
Jul 23, 2004, 12:53:02 PM (21 years ago)
Author:
cmv
Message:

add -lapack for OSF1 for missing lapack routines in dxml (cmv 23/07/04)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/Mgr/mkmf

    r2437 r2560  
    11#!/bin/csh
    2 # $Id: mkmf,v 1.19 2003-09-17 12:19:26 cmv Exp $
     2# $Id: mkmf,v 1.20 2004-07-23 10:53:02 cmv Exp $
    33
    44#  Pour debugger
     
    182182echo '# defining the other external libraries needed on different systems'   >> GNUmakefile
    183183echo ''                                   >> GNUmakefile
    184 echo '# On Linux   lapack and blas and f2c/g2c ere needed'   >> GNUmakefile
     184echo '# On Linux   lapack and blas and f2c/g2c are needed'   >> GNUmakefile
    185185echo 'ifeq ($(MACHEROS),Linux)'   >> GNUmakefile
    186186echo '#EXTLIB = $(EXTLIBL) -llapack -lblas -lf2c'   >> GNUmakefile
     
    189189echo 'EXTSLB = $(EXTSLBL) -llapack -lblas -lg2c'   >> GNUmakefile
    190190echo 'endif'   >> GNUmakefile
    191 echo '# On OSF1 libdxml contains Lapack, but the fortran support library is needed'   >> GNUmakefile
     191echo '# On OSF1 libdxml contains part of Lapack, and the fortran support library is needed'   >> GNUmakefile
     192echo '#  (we still need to add liblapack.a to supply missing lapack routines in dxml)'   >> GNUmakefile
    192193echo 'ifeq ($(MACHEROS),OSF1)'   >> GNUmakefile
    193 echo 'EXTLIB = $(EXTLIBL) -ldxml -lfor'   >> GNUmakefile
    194 echo 'EXTSLB = $(EXTSLBL) -ldxml -lfor'   >> GNUmakefile
     194echo 'EXTLIB = $(EXTLIBL) -llapack -ldxml -lfor'   >> GNUmakefile
     195echo 'EXTSLB = $(EXTSLBL) -llapack -ldxml -lfor'   >> GNUmakefile
    195196echo 'endif'   >> GNUmakefile
    196197echo ''                                   >> GNUmakefile
Note: See TracChangeset for help on using the changeset viewer.