I have the latest XCode (2.4.1) and gfortran installed from macresearch as suggested in the Mac OS X 10.4 Makefile.def from CVS (which I am using). I have tried compiling CVS and the 1.7.3 stable source code but have been unsuccessful. Here are the error messages I am receiving from each version:
Source code from CVS today:
Code: Select all
Making idamax.o from idamax.f
Making dasum.o from dasum.f
/usr/local/bin/gfortran -Wall -O -c dasum.f -o dasum.o
/usr/local/bin/gfortran -Wall -O -c idamax.f -o idamax.o
Making daxpy.o from daxpy.f
/usr/local/bin/gfortran -Wall -O -c daxpy.f -o daxpy.o
Making dcopy.o from dcopy.f
/usr/local/bin/gfortran -Wall -O -c dcopy.f -o dcopy.o
Making ddot.o from ddot.f
/usr/local/bin/gfortran -Wall -O -c ddot.f -o ddot.o
Making dnrm2.o from dnrm2.f
/usr/local/bin/gfortran -Wall -O -c dnrm2.f -o dnrm2.o
dnrm2.f:53.72:
10 assign 30 to next
1
Warning: Obsolete: ASSIGN statement at (1)
dnrm2.f:59.19:
20 go to next,(30, 50, 70, 110)
1
Warning: Obsolete: Assigned GOTO statement at (1)
dnrm2.f:61.72:
assign 50 to next
1
Warning: Obsolete: ASSIGN statement at (1)
dnrm2.f:70.72:
assign 70 to next
1
Warning: Obsolete: ASSIGN statement at (1)
dnrm2.f:76.72:
assign 110 to next
1
Warning: Obsolete: ASSIGN statement at (1)
dnrm2.f:89.5:
110 if( dabs(dx(i)) .le. xmax ) go to 115
1
Warning: Label 110 at (1) defined but not used
dnrm2.f:84.5:
70 if( dabs(dx(i)) .gt. cutlo ) go to 75
1
Warning: Label 70 at (1) defined but not used
dnrm2.f:66.5:
50 if( dx(i) .eq. zero) go to 200
1
Warning: Label 50 at (1) defined but not used
dnrm2.f: In function 'dnrm2':
dnrm2.f:3: warning: 'xmax' may be used uninitialized in this function
Making drot.o from drot.f
/usr/local/bin/gfortran -Wall -O -c drot.f -o drot.o
Making drotg.o from drotg.f
/usr/local/bin/gfortran -Wall -O -c drotg.f -o drotg.o
Making dscal.o from dscal.f
/usr/local/bin/gfortran -Wall -O -c dscal.f -o dscal.o
Making dswap.o from dswap.f
/usr/local/bin/gfortran -Wall -O -c dswap.f -o dswap.o
Making dgemv.o from dgemv.f
/usr/local/bin/gfortran -Wall -O -c dgemv.f -o dgemv.o
Making dger.o from dger.f
/usr/local/bin/gfortran -Wall -O -c dger.f -o dger.o
Making dsymv.o from dsymv.f
/usr/local/bin/gfortran -Wall -O -c dsymv.f -o dsymv.o
Making dsyr2.o from dsyr2.f
/usr/local/bin/gfortran -Wall -O -c dsyr2.f -o dsyr2.o
dsyr2.f: In function 'dsyr2':
dsyr2.f:102: warning: 'ky' may be used uninitialized in this function
dsyr2.f:102: warning: 'jy' may be used uninitialized in this function
dsyr2.f:102: warning: 'kx' may be used uninitialized in this function
dsyr2.f:102: warning: 'jx' may be used uninitialized in this function
Making dtrmm.o from dtrmm.f
/usr/local/bin/gfortran -Wall -O -c dtrmm.f -o dtrmm.o
Making dgbmv.o from dgbmv.f
/usr/local/bin/gfortran -Wall -O -c dgbmv.f -o dgbmv.o
Making dgemm.o from dgemm.f
/usr/local/bin/gfortran -Wall -O -c dgemm.f -o dgemm.o
Making dtrsm.o from dtrsm.f
/usr/local/bin/gfortran -Wall -O -c dtrsm.f -o dtrsm.o
Making dtbsv.o from dtbsv.f
/usr/local/bin/gfortran -Wall -O -c dtbsv.f -o dtbsv.o
dtbsv.f: In function 'dtbsv':
dtbsv.f:146: warning: 'kx' may be used uninitialized in this function
Making dsyr.o from dsyr.f
/usr/local/bin/gfortran -Wall -O -c dsyr.f -o dsyr.o
Making dtrsv.o from dtrsv.f
/usr/local/bin/gfortran -Wall -O -c dtrsv.f -o dtrsv.o
dsyr.f: In function 'dsyr':
dsyr.f:91: warning: 'kx' may be used uninitialized in this function
Making dsyrk.o from dsyrk.f
/usr/local/bin/gfortran -Wall -O -c dsyrk.f -o dsyrk.o
dtrsv.f: In function 'dtrsv':
dtrsv.f:108: warning: 'kx' may be used uninitialized in this function
Making dtrmv.o from dtrmv.f
/usr/local/bin/gfortran -Wall -O -c dtrmv.f -o dtrmv.o
dtrmv.f: In function 'dtrmv':
dtrmv.f:105: warning: 'kx' may be used uninitialized in this function
Making idamax.o from idamax.c
Making dasum.o from dasum.c
gcc -Wall -O2 -c idamax.c -o idamax.o
gcc -Wall -O2 -c dasum.c -o dasum.o
Making daxpy.o from daxpy.c
gcc -Wall -O2 -c daxpy.c -o daxpy.o
Making dcopy.o from dcopy.c
gcc -Wall -O2 -c dcopy.c -o dcopy.o
Making ddot.o from ddot.c
gcc -Wall -O2 -c ddot.c -o ddot.o
Making dnrm2.o from dnrm2.c
gcc -Wall -O2 -c dnrm2.c -o dnrm2.o
Making drot.o from drot.c
gcc -Wall -O2 -c drot.c -o drot.o
Making dscal.o from dscal.c
gcc -Wall -O2 -c dscal.c -o dscal.o
Making dgemv.o from dgemv.c
gcc -Wall -O2 -c dgemv.c -o dgemv.o
Making dsymv.o from dsymv.c
gcc -Wall -O2 -c dsymv.c -o dsymv.o
dgemv.c: In function 'dgemv_':
dgemv.c:154: warning: suggest parentheses around && within ||
dgemv.c:16: warning: unused variable 'a_offset'
dgemv.c:16: warning: unused variable 'a_dim1'
dsymv.c: In function 'dsymv_':
dsymv.c:149: warning: suggest parentheses around && within ||
dsymv.c:16: warning: unused variable 'a_offset'
dsymv.c:16: warning: unused variable 'a_dim1'
Making dtrsv.o from dtrsv.c
gcc -Wall -O2 -c dtrsv.c -o dtrsv.o
Making dger.o from dger.c
gcc -Wall -O2 -c dger.c -o dger.o
dtrsv.c: In function 'dtrsv_':
dtrsv.c:15: warning: unused variable 'a_offset'
dtrsv.c:15: warning: unused variable 'a_dim1'
dger.c: In function 'dger_':
dger.c:16: warning: unused variable 'a_offset'
dger.c:16: warning: unused variable 'a_dim1'
Making dsyr2.o from dsyr2.c
gcc -Wall -O2 -c dsyr2.c -o dsyr2.o
dsyr2.c: In function 'dsyr2_':
dsyr2.c:16: warning: unused variable 'a_offset'
dsyr2.c:16: warning: unused variable 'a_dim1'
Making dmyblas2.o from dmyblas2.c
gcc -Wall -O2 -c dmyblas2.c -o dmyblas2.o
ar cqls /Users/rjaeger1/College/Research/OpenSees/lib/libCBlas.a idamax.o dasum.o daxpy.o dcopy.o ddot.o dnrm2.o drot.o dscal.o \
dgemv.o dsymv.o dtrsv.o dger.o dsyr2.o dmyblas2.o
ranlib /Users/rjaeger1/College/Research/OpenSees/lib/libCBlas.a
Making dgeqr2.o from dgeqr2.f
/usr/local/bin/gfortran -Wall -O -c dgeqr2.f -o dgeqr2.o
Making dlabad.o from dlabad.f
/usr/local/bin/gfortran -Wall -O -c dlabad.f -o dlabad.o
Making dlacon.o from dlacon.f
/usr/local/bin/gfortran -Wall -O -c dlacon.f -o dlacon.o
Making dlacpy.o from dlacpy.f
/usr/local/bin/gfortran -Wall -O -c dlacpy.f -o dlacpy.o
Making dladiv.o from dladiv.f
/usr/local/bin/gfortran -Wall -O -c dladiv.f -o dladiv.o
Making dlae2.o from dlae2.f
/usr/local/bin/gfortran -Wall -O -c dlae2.f -o dlae2.o
Making dlaev2.o from dlaev2.f
/usr/local/bin/gfortran -Wall -O -c dlaev2.f -o dlaev2.o
Making dlaexc.o from dlaexc.f
/usr/local/bin/gfortran -Wall -O -c dlaexc.f -o dlaexc.o
Making dlagtm.o from dlagtm.f
/usr/local/bin/gfortran -Wall -O -c dlagtm.f -o dlagtm.o
Making dlahqr.o from dlahqr.f
/usr/local/bin/gfortran -Wall -O -c dlahqr.f -o dlahqr.o
Making dlaln2.o from dlaln2.f
/usr/local/bin/gfortran -Wall -O -c dlaln2.f -o dlaln2.o
dlahqr.f: In function 'dlahqr':
dlahqr.f:102: warning: 'i2' may be used uninitialized in this function
Making dlamch.o from dlamch.f
/usr/local/bin/gfortran -Wall -O -c dlamch.f -o dlamch.o
Making dlange.o from dlange.f
/usr/local/bin/gfortran -Wall -O -c dlange.f -o dlange.o
dlange.f: In function 'dlange':
dlange.f:74: warning: 'value' may be used uninitialized in this function
Making dlanhs.o from dlanhs.f
/usr/local/bin/gfortran -Wall -O -c dlanhs.f -o dlanhs.o
dlanhs.f: In function 'dlanhs':
dlanhs.f:71: warning: 'value' may be used uninitialized in this function
Making dlanst.o from dlanst.f
/usr/local/bin/gfortran -Wall -O -c dlanst.f -o dlanst.o
dlanst.f: In function 'dlanst':
dlanst.f:66: warning: 'anorm' may be used uninitialized in this function
Making dlanv2.o from dlanv2.f
/usr/local/bin/gfortran -Wall -O -c dlanv2.f -o dlanv2.o
dlamch.f: In function 'dlamch':
dlamch.f:55: warning: 'rmach' may be used uninitialized in this function
Making dlaptm.o from dlaptm.f
/usr/local/bin/gfortran -Wall -O -c dlaptm.f -o dlaptm.o
Making dlapy2.o from dlapy2.f
/usr/local/bin/gfortran -Wall -O -c dlapy2.f -o dlapy2.o
Making dlapy3.o from dlapy3.f
/usr/local/bin/gfortran -Wall -O -c dlapy3.f -o dlapy3.o
Making dlaran.o from dlaran.f
/usr/local/bin/gfortran -Wall -O -c dlaran.f -o dlaran.o
Making dlarf.o from dlarf.f
/usr/local/bin/gfortran -Wall -O -c dlarf.f -o dlarf.o
Making dlarfg.o from dlarfg.f
/usr/local/bin/gfortran -Wall -O -c dlarfg.f -o dlarfg.o
Making dlarfx.o from dlarfx.f
/usr/local/bin/gfortran -Wall -O -c dlarfx.f -o dlarfx.o
Making dlarnd.o from dlarnd.f
/usr/local/bin/gfortran -Wall -O -c dlarnd.f -o dlarnd.o
dlarnd.f: In function 'dlarnd':
dlarnd.f:65: warning: '__result_dlarnd' may be used uninitialized in this function
Making dlarnv.o from dlarnv.f
/usr/local/bin/gfortran -Wall -O -c dlarnv.f -o dlarnv.o
Making dlartg.o from dlartg.f
/usr/local/bin/gfortran -Wall -O -c dlartg.f -o dlartg.o
Making dlaruv.o from dlaruv.f
/usr/local/bin/gfortran -Wall -O -c dlaruv.f -o dlaruv.o
dlaruv.f: In function 'dlaruv':
dlaruv.f:62: warning: 'it4' may be used uninitialized in this function
dlaruv.f:62: warning: 'it1' may be used uninitialized in this function
dlaruv.f:62: warning: 'it2' may be used uninitialized in this function
dlaruv.f:62: warning: 'it3' may be used uninitialized in this function
Making dlascl.o from dlascl.f
/usr/local/bin/gfortran -Wall -O -c dlascl.f -o dlascl.o
Making dlaset.o from dlaset.f
/usr/local/bin/gfortran -Wall -O -c dlaset.f -o dlaset.o
Making dlasr.o from dlasr.f
/usr/local/bin/gfortran -Wall -O -c dlasr.f -o dlasr.o
Making dlasrt.o from dlasrt.f
/usr/local/bin/gfortran -Wall -O -c dlasrt.f -o dlasrt.o
Making dlassq.o from dlassq.f
/usr/local/bin/gfortran -Wall -O -c dlassq.f -o dlassq.o
Making dlasy2.o from dlasy2.f
/usr/local/bin/gfortran -Wall -O -c dlasy2.f -o dlasy2.o
Making dorm2r.o from dorm2r.f
/usr/local/bin/gfortran -Wall -O -c dorm2r.f -o dorm2r.o
Making dsteqr.o from dsteqr.f
/usr/local/bin/gfortran -Wall -O -c dsteqr.f -o dsteqr.o
dlasy2.f: In function 'dlasy2':
dlasy2.f:104: warning: 'jpsv' may be used uninitialized in this function
dlasy2.f:104: warning: 'ipsv' may be used uninitialized in this function
Making dtrevc.o from dtrevc.f
/usr/local/bin/gfortran -Wall -O -c dtrevc.f -o dtrevc.o
dtrevc.f:927.5:
210 CONTINUE
1
Warning: Label 210 at (1) defined but not used
Making dtrexc.o from dtrexc.f
/usr/local/bin/gfortran -Wall -O -c dtrexc.f -o dtrexc.o
Making dtrsen.o from dtrsen.f
/usr/local/bin/gfortran -Wall -O -c dtrsen.f -o dtrsen.o
Making dtrsyl.o from dtrsyl.f
/usr/local/bin/gfortran -Wall -O -c dtrsyl.f -o dtrsyl.o
Making dgbtf2.o from dgbtf2.f
/usr/local/bin/gfortran -Wall -O -c dgbtf2.f -o dgbtf2.o
Making dgbtrf.o from dgbtrf.f
/usr/local/bin/gfortran -Wall -O -c dgbtrf.f -o dgbtrf.o
Making dgbtrs.o from dgbtrs.f
/usr/local/bin/gfortran -Wall -O -c dgbtrs.f -o dgbtrs.o
Making dgttrf.o from dgttrf.f
/usr/local/bin/gfortran -Wall -O -c dgttrf.f -o dgttrf.o
Making dgttrs.o from dgttrs.f
/usr/local/bin/gfortran -Wall -O -c dgttrs.f -o dgttrs.o
Making dpttrf.o from dpttrf.f
/usr/local/bin/gfortran -Wall -O -c dpttrf.f -o dpttrf.o
Making dpttrs.o from dpttrs.f
/usr/local/bin/gfortran -Wall -O -c dpttrs.f -o dpttrs.o
Making dlaswp.o from dlaswp.f
/usr/local/bin/gfortran -Wall -O -c dlaswp.f -o dlaswp.o
Making dgbsv.o from dgbsv.f
/usr/local/bin/gfortran -Wall -O -c dgbsv.f -o dgbsv.o
Making dpbtrs.o from dpbtrs.f
/usr/local/bin/gfortran -Wall -O -c dpbtrs.f -o dpbtrs.o
Making dgesv.o from dgesv.f
/usr/local/bin/gfortran -Wall -O -c dgesv.f -o dgesv.o
Making dgetrs.o from dgetrs.f
/usr/local/bin/gfortran -Wall -O -c dgetrs.f -o dgetrs.o
Making dpbsv.o from dpbsv.f
/usr/local/bin/gfortran -Wall -O -c dpbsv.f -o dpbsv.o
Making dgetf2.o from dgetf2.f
/usr/local/bin/gfortran -Wall -O -c dgetf2.f -o dgetf2.o
Making dgetrf.o from dgetrf.f
/usr/local/bin/gfortran -Wall -O -c dgetrf.f -o dgetrf.o
Making dpbtrf.o from dpbtrf.f
/usr/local/bin/gfortran -Wall -O -c dpbtrf.f -o dpbtrf.o
Making dpotf2.o from dpotf2.f
/usr/local/bin/gfortran -Wall -O -c dpotf2.f -o dpotf2.o
Making dpbtf2.o from dpbtf2.f
/usr/local/bin/gfortran -Wall -O -c dpbtf2.f -o dpbtf2.o
Making dgels.o from dgels.f
/usr/local/bin/gfortran -Wall -O -c dgels.f -o dgels.o
Making dgeqrf.o from dgeqrf.f
/usr/local/bin/gfortran -Wall -O -c dgeqrf.f -o dgeqrf.o
dgels.f: In function 'dgels':
dgels.f:122: warning: 'wsize' may be used uninitialized in this function
dgels.f:121: warning: 'tpsd' may be used uninitialized in this function
Making dgelqf.o from dgelqf.f
/usr/local/bin/gfortran -Wall -O -c dgelqf.f -o dgelqf.o
Making dormqr.o from dormqr.f
/usr/local/bin/gfortran -Wall -O -c dormqr.f -o dormqr.o
Making dormlq.o from dormlq.f
/usr/local/bin/gfortran -Wall -O -c dormlq.f -o dormlq.o
dormqr.f: In function 'dormqr':
dormqr.f:108: warning: 'nb' may be used uninitialized in this function
dormqr.f:108: warning: 'lwkopt' may be used uninitialized in this function
Making dgelq2.o from dgelq2.f
/usr/local/bin/gfortran -Wall -O -c dgelq2.f -o dgelq2.o
dormlq.f: In function 'dormlq':
dormlq.f:109: warning: 'nb' may be used uninitialized in this function
dormlq.f:109: warning: 'lwkopt' may be used uninitialized in this function
Making dlarft.o from dlarft.f
/usr/local/bin/gfortran -Wall -O -c dlarft.f -o dlarft.o
Making dlarfb.o from dlarfb.f
/usr/local/bin/gfortran -Wall -O -c dlarfb.f -o dlarfb.o
Making dorml2.o from dorml2.f
/usr/local/bin/gfortran -Wall -O -c dorml2.f -o dorml2.o
Making dlaebz.o from dlaebz.f
/usr/local/bin/gfortran -Wall -O -c dlaebz.f -o dlaebz.o
dlaebz.f:2.45:
$ RELTOL, PIVMIN, D, E, E2, NVAL, AB, C, MOUT,
1
Warning: Unused variable e declared at (1)
Making dlagtf.o from dlagtf.f
/usr/local/bin/gfortran -Wall -O -c dlagtf.f -o dlagtf.o
Making dlagts.o from dlagts.f
/usr/local/bin/gfortran -Wall -O -c dlagts.f -o dlagts.o
Making dlansb.o from dlansb.f
/usr/local/bin/gfortran -Wall -O -c dlansb.f -o dlansb.o
dlansb.f: In function 'dlansb':
dlansb.f:85: warning: 'value' may be used uninitialized in this function
Making dlar2v.o from dlar2v.f
/usr/local/bin/gfortran -Wall -O -c dlar2v.f -o dlar2v.o
Making dlargv.o from dlargv.f
/usr/local/bin/gfortran -Wall -O -c dlargv.f -o dlargv.o
Making dlartv.o from dlartv.f
/usr/local/bin/gfortran -Wall -O -c dlartv.f -o dlartv.o
Making dsbevx.o from dsbevx.f
/usr/local/bin/gfortran -Wall -O -c dsbevx.f -o dsbevx.o
Making dsbtrd.o from dsbtrd.f
/usr/local/bin/gfortran -Wall -O -c dsbtrd.f -o dsbtrd.o
Making dstebz.o from dstebz.f
/usr/local/bin/gfortran -Wall -O -c dstebz.f -o dstebz.o
dstebz.f: In function 'dstebz':
dstebz.f:187: warning: 'wul' may be used uninitialized in this function
dstebz.f:187: warning: 'wlu' may be used uninitialized in this function
Making dstein.o from dstein.f
/usr/local/bin/gfortran -Wall -O -c dstein.f -o dstein.o
Making dsterf.o from dsterf.f
/usr/local/bin/gfortran -Wall -O -c dsterf.f -o dsterf.o
dstein.f: In function 'dstein':
dstein.f:115: warning: 'xjm' may be used uninitialized in this function
dstein.f:114: warning: 'ortol' may be used uninitialized in this function
dstein.f:114: warning: 'onenrm' may be used uninitialized in this function
dstein.f:114: warning: 'dtpcrt' may be used uninitialized in this function
dstein.f:111: warning: 'gpind' may be used uninitialized in this function
Making dgetri.o from dgetri.f
/usr/local/bin/gfortran -Wall -O -c dgetri.f -o dgetri.o
Making dtrtri.o from dtrtri.f
/usr/local/bin/gfortran -Wall -O -c dtrtri.f -o dtrtri.o
Making dtrti2.o from dtrti2.f
/usr/local/bin/gfortran -Wall -O -c dtrti2.f -o dtrti2.o
Making dgebak.o from dgebak.f
/usr/local/bin/gfortran -Wall -O -c dgebak.f -o dgebak.o
Making dgebal.o from dgebal.f
/usr/local/bin/gfortran -Wall -O -c dgebal.f -o dgebal.o
Making dgeev.o from dgeev.f
/usr/local/bin/gfortran -Wall -O -c dgeev.f -o dgeev.o
dgeev.f: In function 'dgeev':
dgeev.f:124: warning: 'maxwrk' may be used uninitialized in this function
Making dgehd2.o from dgehd2.f
/usr/local/bin/gfortran -Wall -O -c dgehd2.f -o dgehd2.o
Making dgehrd.o from dgehrd.f
/usr/local/bin/gfortran -Wall -O -c dgehrd.f -o dgehrd.o
Making dhseqr.o from dhseqr.f
/usr/local/bin/gfortran -Wall -O -c dhseqr.f -o dhseqr.o
dgehrd.f: In function 'dgehrd':
dgehrd.f:112: warning: 'nx' may be used uninitialized in this function
Making dlahrd.o from dlahrd.f
/usr/local/bin/gfortran -Wall -O -c dlahrd.f -o dlahrd.o
dhseqr.f: In function 'dhseqr':
dhseqr.f:127: warning: 'i2' may be used uninitialized in this function
dlahrd.f: In function 'dlahrd':
dlahrd.f:111: warning: 'ei' may be used uninitialized in this function
Making dorg2r.o from dorg2r.f
/usr/local/bin/gfortran -Wall -O -c dorg2r.f -o dorg2r.o
Making dorghr.o from dorghr.f
/usr/local/bin/gfortran -Wall -O -c dorghr.f -o dorghr.o
Making dorgqr.o from dorgqr.f
/usr/local/bin/gfortran -Wall -O -c dorgqr.f -o dorgqr.o
Making dpotrf.o from dpotrf.f
/usr/local/bin/gfortran -Wall -O -c dpotrf.f -o dpotrf.o
dorgqr.f: In function 'dorgqr':
dorgqr.f:78: warning: 'ki' may be used uninitialized in this function
Making dpotrs.o from dpotrs.f
/usr/local/bin/gfortran -Wall -O -c dpotrs.f -o dpotrs.o
Making ilaenv.o from ilaenv.f
/usr/local/bin/gfortran -Wall -O -c ilaenv.f -o ilaenv.o
ilaenv.f:1.69:
INTEGER FUNCTION ILAENV( ISPEC, NAME, OPTS, N1, N2, N3,
1
Warning: Unused variable n3 declared at (1)
ilaenv.f:1.57:
INTEGER FUNCTION ILAENV( ISPEC, NAME, OPTS, N1, N2, N3,
1
Warning: Unused variable opts declared at (1)
Making lsame.o from lsame.f
/usr/local/bin/gfortran -Wall -O -c lsame.f -o lsame.o
Making lsamen.o from lsamen.f
/usr/local/bin/gfortran -Wall -O -c lsamen.f -o lsamen.o
Making xerbla.o from xerbla.f
/usr/local/bin/gfortran -Wall -O -c xerbla.f -o xerbla.o
Making xlaenv.o from xlaenv.f
/usr/local/bin/gfortran -Wall -O -c xlaenv.f -o xlaenv.o
Making ieeeck.o from ieeeck.f
/usr/local/bin/gfortran -Wall -O -c ieeeck.f -o ieeeck.o
Making dgssv.o from dgssv.c
gcc -Wall -O2 -c dgssv.c -o dgssv.o
Making dgssvx.o from dgssvx.c
gcc -Wall -O2 -c dgssvx.c -o dgssvx.o
dgssv.c: In function 'dgssv':
dgssv.c:133: warning: 'AA' may be used uninitialized in this function
dgssvx.c: In function 'dgssvx':
dgssvx.c:347: warning: 'bignum' may be used uninitialized in this function
dgssvx.c:347: warning: 'smlnum' may be used uninitialized in this function
Making dsp_blas2.o from dsp_blas2.c
gcc -Wall -O2 -c dsp_blas2.c -o dsp_blas2.o
dsp_blas2.c: In function 'sp_dtrsv':
dsp_blas2.c:252: warning: implicit declaration of function 'dtrsv_'
dsp_blas2.c:89: warning: unused variable 'beta'
dsp_blas2.c:89: warning: unused variable 'alpha'
dsp_blas2.c:88: warning: unused variable 'incy'
Making dsp_blas3.o from dsp_blas3.c
gcc -Wall -O2 -c dsp_blas3.c -o dsp_blas3.o
Making dgscon.o from dgscon.c
gcc -Wall -O2 -c dgscon.c -o dgscon.o
Making dlacon.o from dlacon.c
gcc -Wall -O2 -c dlacon.c -o dlacon.o
Making dlangs.o from dlangs.c
gcc -Wall -O2 -c dlangs.c -o dlangs.o
dlangs.c: In function 'dlangs':
dlangs.c:61: warning: 'value' may be used uninitialized in this function
Making dgsequ.o from dgsequ.c
gcc -Wall -O2 -c dgsequ.c -o dgsequ.o
Making dlaqgs.o from dlaqgs.c
gcc -Wall -O2 -c dlaqgs.c -o dlaqgs.o
Making dpivotgrowth.o from dpivotgrowth.c
gcc -Wall -O2 -c dpivotgrowth.c -o dpivotgrowth.o
Making dgsrfs.o from dgsrfs.c
gcc -Wall -O2 -c dgsrfs.c -o dgsrfs.o
Making dgstrf.o from dgstrf.c
gcc -Wall -O2 -c dgstrf.c -o dgstrf.o
dgstrf.c: In function 'dgstrf':
dgstrf.c:185: warning: 'iperm_r' may be used uninitialized in this function
Making dgstrs.o from dgstrs.c
gcc -Wall -O2 -c dgstrs.c -o dgstrs.o
Making dcopy_to_ucol.o from dcopy_to_ucol.c
gcc -Wall -O2 -c dcopy_to_ucol.c -o dcopy_to_ucol.o
dgstrs.c: In function 'dgstrs':
dgstrs.c:93: warning: unused variable 'incy'
dgstrs.c:93: warning: unused variable 'incx'
dcopy_to_ucol.c: In function 'dcopy_to_ucol':
dcopy_to_ucol.c:79: warning: suggest parentheses around assignment used as truth value
dcopy_to_ucol.c:82: warning: suggest parentheses around assignment used as truth value
Making dsnode_dfs.o from dsnode_dfs.c
gcc -Wall -O2 -c dsnode_dfs.c -o dsnode_dfs.o
dsnode_dfs.c: In function 'dsnode_dfs':
dsnode_dfs.c:75: warning: suggest parentheses around assignment used as truth value
dsnode_dfs.c:88: warning: suggest parentheses around assignment used as truth value
Making dsnode_bmod.o from dsnode_bmod.c
gcc -Wall -O2 -c dsnode_bmod.c -o dsnode_bmod.o
Making dpanel_dfs.o from dpanel_dfs.c
gcc -Wall -O2 -c dpanel_dfs.c -o dpanel_dfs.o
dsnode_bmod.c: In function 'dsnode_bmod':
dsnode_bmod.c:101: warning: implicit declaration of function 'dlsolve'
dsnode_bmod.c:102: warning: implicit declaration of function 'dmatvec'
Making dpanel_bmod.o from dpanel_bmod.c
gcc -Wall -O2 -c dpanel_bmod.c -o dpanel_bmod.o
Making dreadhb.o from dreadhb.c
gcc -Wall -O2 -c dreadhb.c -o dreadhb.o
dpanel_bmod.c: In function 'dpanel_bmod':
dpanel_bmod.c:94: warning: unused variable 'one'
dreadhb.c: In function 'dreadhb':
dreadhb.c:180: warning: unused variable 'key'
Making dcolumn_dfs.o from dcolumn_dfs.c
gcc -Wall -O2 -c dcolumn_dfs.c -o dcolumn_dfs.o
dcolumn_dfs.c: In function 'dcolumn_dfs':
dcolumn_dfs.c:128: warning: suggest parentheses around assignment used as truth value
dcolumn_dfs.c:171: warning: suggest parentheses around assignment used as truth value
Making dcolumn_bmod.o from dcolumn_bmod.c
gcc -Wall -O2 -c dcolumn_bmod.c -o dcolumn_bmod.o
Making dpivotL.o from dpivotL.c
gcc -Wall -O2 -c dpivotL.c -o dpivotL.o
dcolumn_bmod.c: In function 'dcolumn_bmod':
dcolumn_bmod.c:269: warning: suggest parentheses around assignment used as truth value
dcolumn_bmod.c:94: warning: unused variable 'none'
dcolumn_bmod.c:93: warning: unused variable 'one'
dcolumn_bmod.c:65: warning: unused variable 'beta'
dcolumn_bmod.c:65: warning: unused variable 'alpha'
dcolumn_bmod.c:64: warning: unused variable 'incy'
dcolumn_bmod.c:64: warning: unused variable 'incx'
Making dpruneL.o from dpruneL.c
gcc -Wall -O2 -c dpruneL.c -o dpruneL.o
Making dmemory.o from dmemory.c
gcc -Wall -O2 -c dmemory.c -o dmemory.o
Making dutil.o from dutil.c
gcc -Wall -O2 -c dutil.c -o dutil.o
dutil.c:472: warning: return type defaults to 'int'
Making dmyblas2.o from dmyblas2.c
gcc -Wall -O2 -c dmyblas2.c -o dmyblas2.o
gcc -c superlu_timer.c
Making lsame.o from lsame.c
gcc -Wall -O2 -c lsame.c -o lsame.o
lsame.c: In function 'lsame_':
lsame.c:55: warning: suggest parentheses around && within ||
lsame.c:56: warning: suggest parentheses around && within ||
lsame.c:58: warning: suggest parentheses around && within ||
lsame.c:59: warning: suggest parentheses around && within ||
Making util.o from util.c
gcc -Wall -O2 -c util.c -o util.o
Making memory.o from memory.c
gcc -Wall -O2 -c memory.c -o memory.o
Making get_perm_c.o from get_perm_c.c
gcc -Wall -O2 -c get_perm_c.c -o get_perm_c.o
Making mmd.o from mmd.c
gcc -Wall -O2 -c mmd.c -o mmd.o
Making sp_coletree.o from sp_coletree.c
gcc -Wall -O2 -c sp_coletree.c -o sp_coletree.o
Making sp_preorder.o from sp_preorder.c
gcc -Wall -O2 -c sp_preorder.c -o sp_preorder.o
Making sp_ienv.o from sp_ienv.c
gcc -Wall -O2 -c sp_ienv.c -o sp_ienv.o
sp_ienv.c: In function 'sp_ienv':
sp_ienv.c:57: warning: implicit declaration of function 'xerbla_'
Making relax_snode.o from relax_snode.c
gcc -Wall -O2 -c relax_snode.c -o relax_snode.o
Making heap_relax_snode.o from heap_relax_snode.c
gcc -Wall -O2 -c heap_relax_snode.c -o heap_relax_snode.o
Making xerbla.o from xerbla.c
gcc -Wall -O2 -c xerbla.c -o xerbla.o
xerbla.c: In function 'xerbla_':
xerbla.c:33: warning: implicit declaration of function 'printf'
xerbla.c:33: warning: incompatible implicit declaration of built-in function 'printf'
Making colamd.o from colamd.c
gcc -Wall -O2 -c colamd.c -o colamd.o
gcc -c dlamch.c
Making dgetv0.o from dgetv0.f
Making dlaqrb.o from dlaqrb.f
/usr/local/bin/gfortran -Wall -O -c dgetv0.f -o dgetv0.o
/usr/local/bin/gfortran -Wall -O -c dlaqrb.f -o dlaqrb.o
dgetv0.f:120.26:
& ( ido, bmat, itry, initv, n, j, v, ldv, resid, rnorm,
1
Warning: Unused variable itry declared at (1)
stat.h:8.39:
Included at dgetv0.f:128:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
stat.h:8.35:
Included at dgetv0.f:128:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
Making dstqrb.o from dstqrb.f
/usr/local/bin/gfortran -Wall -O -c dstqrb.f -o dstqrb.o
dlaqrb.f: In function 'dlaqrb':
dlaqrb.f:141: warning: 'i2' may be used uninitialized in this function
Making dsortc.o from dsortc.f
/usr/local/bin/gfortran -Wall -O -c dsortc.f -o dsortc.o
Making dsortr.o from dsortr.f
/usr/local/bin/gfortran -Wall -O -c dsortr.f -o dsortr.o
Making dstatn.o from dstatn.f
/usr/local/bin/gfortran -Wall -O -c dstatn.f -o dstatn.o
stat.h:8.39:
Included at dstatn.f:24:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
stat.h:8.23:
Included at dstatn.f:24:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t1 declared at (1)
stat.h:8.19:
Included at dstatn.f:24:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t0 declared at (1)
stat.h:8.31:
Included at dstatn.f:24:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
stat.h:8.27:
Included at dstatn.f:24:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.35:
Included at dstatn.f:24:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
Making dstats.o from dstats.f
/usr/local/bin/gfortran -Wall -O -c dstats.f -o dstats.o
stat.h:8.39:
Included at dstats.f:14:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
stat.h:8.23:
Included at dstats.f:14:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t1 declared at (1)
stat.h:8.19:
Included at dstats.f:14:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t0 declared at (1)
stat.h:8.31:
Included at dstats.f:14:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
stat.h:8.27:
Included at dstats.f:14:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.35:
Included at dstats.f:14:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
Making dnaitr.o from dnaitr.f
/usr/local/bin/gfortran -Wall -O -c dnaitr.f -o dnaitr.o
Making dnapps.o from dnapps.f
/usr/local/bin/gfortran -Wall -O -c dnapps.f -o dnapps.o
dnaitr.f:210.33:
& (ido, bmat, n, k, np, nb, resid, rnorm, v, ldv, h, ldh,
1
Warning: Unused variable nb declared at (1)
stat.h:8.35:
Included at dnapps.f:152:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
stat.h:8.31:
Included at dnapps.f:152:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
stat.h:8.27:
Included at dnapps.f:152:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.39:
Included at dnapps.f:152:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
Making dnaup2.o from dnaup2.f
/usr/local/bin/gfortran -Wall -O -c dnaup2.f -o dnaup2.o
dnaup2.f:316.5:
10 continue
1
Warning: Label 10 at (1) defined but not used
dnaup2.f:175.63:
& ( ido, bmat, n, which, nev, np, tol, resid, mode, iupd,
1
Warning: Unused variable iupd declared at (1)
stat.h:8.35:
Included at dnaup2.f:184:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
stat.h:8.39:
Included at dnaup2.f:184:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
Making dnaupd.o from dnaupd.f
/usr/local/bin/gfortran -Wall -O -c dnaupd.f -o dnaupd.o
dnaupd.f:540.24:
if (nb .le. 0) nb = 1
1
Warning: Nonconforming tab character at (1)
dnaupd.f:541.28:
if (tol .le. zero) tol = dlamch('EpsMach')
1
Warning: Nonconforming tab character at (1)
stat.h:8.39:
Included at dnaupd.f:415:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
stat.h:8.31:
Included at dnaupd.f:415:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
stat.h:8.27:
Included at dnaupd.f:415:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.35:
Included at dnaupd.f:415:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
Making dnconv.o from dnconv.f
/usr/local/bin/gfortran -Wall -O -c dnconv.f -o dnconv.o
stat.h:8.31:
Included at dnconv.f:73:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
stat.h:8.27:
Included at dnconv.f:73:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.39:
Included at dnconv.f:73:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
stat.h:8.35:
Included at dnconv.f:73:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
Making dneigh.o from dneigh.f
/usr/local/bin/gfortran -Wall -O -c dneigh.f -o dneigh.o
Making dngets.o from dngets.f
/usr/local/bin/gfortran -Wall -O -c dngets.f -o dngets.o
stat.h:8.39:
Included at dneigh.f:108:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
stat.h:8.31:
Included at dneigh.f:108:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
stat.h:8.27:
Included at dneigh.f:108:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.35:
Included at dneigh.f:108:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
stat.h:8.35:
Included at dngets.f:103:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
dngets.f:96.32:
& shiftr, shifti )
1
Warning: Unused variable shiftr declared at (1)
dngets.f:96.40:
& shiftr, shifti )
1
Warning: Unused variable shifti declared at (1)
stat.h:8.27:
Included at dngets.f:103:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.31:
Included at dngets.f:103:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
stat.h:8.39:
Included at dngets.f:103:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
Making dsaitr.o from dsaitr.f
/usr/local/bin/gfortran -Wall -O -c dsaitr.f -o dsaitr.o
Making dsapps.o from dsapps.f
/usr/local/bin/gfortran -Wall -O -c dsapps.f -o dsapps.o
stat.h:8.31:
Included at dsapps.f:139:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
stat.h:8.27:
Included at dsapps.f:139:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.39:
Included at dsapps.f:139:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
stat.h:8.35:
Included at dsapps.f:139:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
Making dsaup2.o from dsaup2.f
/usr/local/bin/gfortran -Wall -O -c dsaup2.f -o dsaup2.o
Making dsaupd.o from dsaupd.f
/usr/local/bin/gfortran -Wall -O -c dsaupd.f -o dsaupd.o
dsaup2.f:809.5:
130 continue
1
Warning: Label 130 at (1) defined but not used
dsaup2.f:324.5:
10 continue
1
Warning: Label 10 at (1) defined but not used
dsaup2.f:180.63:
& ( ido, bmat, n, which, nev, np, tol, resid, mode, iupd,
1
Warning: Unused variable iupd declared at (1)
stat.h:8.39:
Included at dsaup2.f:189:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
stat.h:8.35:
Included at dsaup2.f:189:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
stat.h:8.39:
Included at dsaupd.f:417:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
stat.h:8.31:
Included at dsaupd.f:417:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
stat.h:8.27:
Included at dsaupd.f:417:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.35:
Included at dsaupd.f:417:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
Making dsconv.o from dsconv.f
/usr/local/bin/gfortran -Wall -O -c dsconv.f -o dsconv.o
stat.h:8.39:
Included at dsconv.f:66:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
stat.h:8.27:
Included at dsconv.f:66:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.35:
Included at dsconv.f:66:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
stat.h:8.31:
Included at dsconv.f:66:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
Making dseigt.o from dseigt.f
/usr/local/bin/gfortran -Wall -O -c dseigt.f -o dseigt.o
Making dsgets.o from dsgets.f
/usr/local/bin/gfortran -Wall -O -c dsgets.f -o dsgets.o
dseigt.f:124.18:
integer i, k, msglvl
1
Warning: Unused variable i declared at (1)
stat.h:8.35:
Included at dseigt.f:95:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
stat.h:8.27:
Included at dseigt.f:95:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.31:
Included at dseigt.f:95:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
stat.h:8.39:
Included at dseigt.f:95:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
stat.h:8.31:
Included at dsgets.f:100:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
stat.h:8.27:
Included at dsgets.f:100:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.35:
Included at dsgets.f:100:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
stat.h:8.39:
Included at dsgets.f:100:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
Making dneupd.o from dneupd.f
/usr/local/bin/gfortran -Wall -O -c dneupd.f -o dneupd.o
Making dseupd.o from dseupd.f
/usr/local/bin/gfortran -Wall -O -c dseupd.f -o dseupd.o
dneupd.f:799.72:
& 1 ), dnrm2( ncv, workl(invsub+j*ldq), 1) )
1
Warning: Line truncated at (1)
stat.h:8.27:
Included at dseupd.f:222:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.19:
Included at dseupd.f:222:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t0 declared at (1)
stat.h:8.23:
Included at dseupd.f:222:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t1 declared at (1)
stat.h:8.31:
Included at dseupd.f:222:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
stat.h:8.35:
Included at dseupd.f:222:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
stat.h:8.39:
Included at dseupd.f:222:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
stat.h:8.35:
Included at dneupd.f:306:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t4 declared at (1)
stat.h:8.23:
Included at dneupd.f:306:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t1 declared at (1)
stat.h:8.19:
Included at dneupd.f:306:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t0 declared at (1)
stat.h:8.31:
Included at dneupd.f:306:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t3 declared at (1)
stat.h:8.27:
Included at dneupd.f:306:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t2 declared at (1)
stat.h:8.39:
Included at dneupd.f:306:
real t0, t1, t2, t3, t4, t5
1
Warning: Unused variable t5 declared at (1)
dseupd.f: In function 'dseupd':
dseupd.f:261: warning: 'thres2' may be used uninitialized in this function
Making dsesrt.o from dsesrt.f
/usr/local/bin/gfortran -Wall -O -c dsesrt.f -o dsesrt.o
Making dvout.o from dvout.f
/usr/local/bin/gfortran -Wall -O -c dvout.f -o dvout.o
Making dmout.o from dmout.f
/usr/local/bin/gfortran -Wall -O -c dmout.f -o dmout.o
Making icnteq.o from icnteq.f
/usr/local/bin/gfortran -Wall -O -c icnteq.f -o icnteq.o
Making icopy.o from icopy.f
/usr/local/bin/gfortran -Wall -O -c icopy.f -o icopy.o
Making iset.o from iset.f
/usr/local/bin/gfortran -Wall -O -c iset.f -o iset.o
iset.f:6.43:
subroutine iset (n, value, array, inc)
1
Warning: Unused variable inc declared at (1)
Making iswap.o from iswap.f
/usr/local/bin/gfortran -Wall -O -c iswap.f -o iswap.o
Making ivout.o from ivout.f
/usr/local/bin/gfortran -Wall -O -c ivout.f -o ivout.o
Making second.o from second.f
/usr/local/bin/gfortran -Wall -O -c second.f -o second.o
second.f:17.27:
REAL T1
1
Warning: Unused variable t1 declared at (1)
'tarray[0]second.f: In function 'second':
second.f:33: warning: ' is used uninitialized in this function
Making umd2fb.o from umd2fb.f
/usr/local/bin/gfortran -Wall -O -c umd2fb.f -o umd2fb.o
Making umd2co.o from umd2co.f
/usr/local/bin/gfortran -Wall -O -c umd2co.f -o umd2co.o
umd2fb.f:4.29:
$ PRESRV, ICNTL)
1
Warning: Unused variable icntl declared at (1)
Making umd2fa.o from umd2fa.f
/usr/local/bin/gfortran -Wall -O -c umd2fa.f -o umd2fa.o
Making umd2f0.o from umd2f0.f
/usr/local/bin/gfortran -Wall -O -c umd2f0.f -o umd2f0.o
Making umd2f1.o from umd2f1.f
/usr/local/bin/gfortran -Wall -O -c umd2f1.f -o umd2f1.o
umd2f0.f: In function 'umd2f0':
umd2f0.f:139: warning: 'offpp' may be used uninitialized in this function
umd2f0.f:138: warning: 'blkpp' may be used uninitialized in this function
umd2f0.f:138: warning: 'lublpp' may be used uninitialized in this function
umd2f0.f:139: warning: 'p2' may be used uninitialized in this function
Making umd2f2.o from umd2f2.f
/usr/local/bin/gfortran -Wall -O -c umd2f2.f -o umd2f2.o
Making umd2fg.o from umd2fg.f
/usr/local/bin/gfortran -Wall -O -c umd2fg.f -o umd2fg.o
umd2fg.f:3.36:
$ CP, RP, DN, N, ICNTL, WIR, WIC, WR, WC,
1
Warning: Unused variable icntl declared at (1)
umd2fg.f:2.39:
$ II, ISIZE, IHEAD, ITAIL, IUSE,
1
Warning: Unused variable itail declared at (1)
umd2fg.f:1.50:
SUBROUTINE UMD2FG (XX, XSIZE, XHEAD, XTAIL, XUSE,
1
Warning: Unused variable xtail declared at (1)
Making umd2in.o from umd2in.f
/usr/local/bin/gfortran -Wall -O -c umd2in.f -o umd2in.o
Making umd2of.o from umd2of.f
/usr/local/bin/gfortran -Wall -O -c umd2of.f -o umd2of.o
umd2of.f:4.30:
$ ONZ, WHO, INFO, NBELOW)
1
Warning: Unused variable info declared at (1)
Making umd2s2.o from umd2s2.f
/usr/local/bin/gfortran -Wall -O -c umd2s2.f -o umd2s2.o
umd2s2.f:2.62:
$ LUISIZ, LUI, B, X, R, Z, LY, Y, S, CNTL, ICNTL, INFO,
1
Warning: Unused variable icntl declared at (1)
umd2s2.f:3.43:
$ RINFO, CPERM, RPERM, PRESRV, AN, ANZ, AP, AI, AX, ON,
1
Warning: Unused variable presrv declared at (1)
Making umd2sl.o from umd2sl.f
/usr/local/bin/gfortran -Wall -O -c umd2sl.f -o umd2sl.o
umd2sl.f:1.36:
SUBROUTINE UMD2SL (NLU, NPIV, N, LUP, LUI, LUX, X, W)
1
Warning: Unused variable npiv declared at (1)
Making umd2so.o from umd2so.f
/usr/local/bin/gfortran -Wall -O -c umd2so.f -o umd2so.o
Making umd2su.o from umd2su.f
/usr/local/bin/gfortran -Wall -O -c umd2su.f -o umd2su.o
Making umd2er.o from umd2er.f
/usr/local/bin/gfortran -Wall -O -c umd2er.f -o umd2er.o
Making umd2p1.o from umd2p1.f
/usr/local/bin/gfortran -Wall -O -c umd2p1.f -o umd2p1.o
umd2f2.f: In function 'umd2f2':
umd2f2.f:457: warning: 'ip' may be used uninitialized in this function
umd2f2.f:465: warning: 'xp' may be used uninitialized in this function
umd2f2.f:455: warning: 'rowpos' may be used uninitialized in this function
umd2f2.f:456: warning: 'pivrow' may be used uninitialized in this function
umd2f2.f:465: warning: 'luip' may be used uninitialized in this function
umd2f2.f:462: warning: 'luip1' may be used uninitialized in this function
umd2f2.f:469: warning: 'fluip' may be used uninitialized in this function
umd2f2.f:458: warning: 'fedegr' may be used uninitialized in this function
umd2p1.f: In function 'umd2p1':
umd2p1.f:112: warning: 'prlu' may be used uninitialized in this function
umd2p1.f:112: warning: 'transa' may be used uninitialized in this function
Making umd2p2.o from umd2p2.f
/usr/local/bin/gfortran -Wall -O -c umd2p2.f -o umd2p2.o
Making umd2lt.o from umd2lt.f
/usr/local/bin/gfortran -Wall -O -c umd2lt.f -o umd2lt.o
Making umd2ut.o from umd2ut.f
/usr/local/bin/gfortran -Wall -O -c umd2ut.f -o umd2ut.o
Making umd2rf.o from umd2rf.f
/usr/local/bin/gfortran -Wall -O -c umd2rf.f -o umd2rf.o
umd2ut.f:1.36:
SUBROUTINE UMD2UT (NLU, NPIV, N, LUP, LUI, LUX, X, W)
1
Warning: Unused variable npiv declared at (1)
Making umd2ra.o from umd2ra.f
/usr/local/bin/gfortran -Wall -O -c umd2ra.f -o umd2ra.o
Making umd2r0.o from umd2r0.f
/usr/local/bin/gfortran -Wall -O -c umd2r0.f -o umd2r0.o
Making umd2r2.o from umd2r2.f
/usr/local/bin/gfortran -Wall -O -c umd2r2.f -o umd2r2.o
umd2r2.f:2.41:
$ CPERM, RPERM, ICNTL, CNTL, INFO, RINFO, MC, MR,
1
Warning: Unused variable cntl declared at (1)
Making umd2rg.o from umd2rg.f
/usr/local/bin/gfortran -Wall -O -c umd2rg.f -o umd2rg.o
umd2rg.f:3.21:
$ ICNTL, FFXP, FFSIZE, PFREE, XFREE)
1
Warning: Unused variable icntl declared at (1)
umd2rg.f:1.50:
SUBROUTINE UMD2RG (XX, XSIZE, XHEAD, XTAIL, XUSE,
1
Warning: Unused variable xtail declared at (1)
Making umd21i.o from umd21i.f
/usr/local/bin/gfortran -Wall -O -c umd21i.f -o umd21i.o
Making mc21b.o from mc21b.f
/usr/local/bin/gfortran -Wall -O -c mc21b.f -o mc21b.o
mc21b.f: In function 'mc21b':
mc21b.f:35: warning: 'in2' may be used uninitialized in this function
mc21b.f:37: warning: 'ii' may be used uninitialized in this function
Making mc13e.o from mc13e.f
/usr/local/bin/gfortran -Wall -O -c mc13e.f -o mc13e.o
Makefile:819: *** commands commence before first target. Stop.
make -f Makefile.lib
Making util.o from util.c
gcc -Wall -O2 -c util.c -o util.o
Making match.o from match.c
gcc -Wall -O2 -c match.c -o match.o
Making coarsen.o from coarsen.c
gcc -Wall -O2 -c coarsen.c -o coarsen.o
match.c: In function 'SMHEM_Match':
match.c:803: warning: 'maxidx' may be used uninitialized in this function
match.c: In function 'SHEM_Match':
match.c:734: warning: 'maxidx' may be used uninitialized in this function
match.c: In function 'MHEM_Match_W':
match.c:572: warning: 'maxidx' may be used uninitialized in this function
match.c: In function 'MHEM_Match':
match.c:480: warning: 'maxidx' may be used uninitialized in this function
match.c: In function 'HCM_Match_W':
match.c:420: warning: 'maxidx' may be used uninitialized in this function
Making memory.o from memory.c
gcc -Wall -O2 -c memory.c -o memory.o
match.c: In function 'HCM_Match':
match.c:363: warning: 'maxidx' may be used uninitialized in this function
match.c: In function 'LEM_Match_W':
match.c:306: warning: 'minidx' may be used uninitialized in this function
memory.c: In function 'FreeGraph':
memory.c:115: warning: unused variable 'i'
match.c: In function 'LEM_Match':
match.c:252: warning: 'minidx' may be used uninitialized in this function
match.c: In function 'HEM_Match_W':
match.c:194: warning: 'maxidx' may be used uninitialized in this function
match.c: In function 'HEM_Match':
match.c:141: warning: 'maxidx' may be used uninitialized in this function
Making fm.o from fm.c
gcc -Wall -O2 -c fm.c -o fm.o
Making GKlib.o from GKlib.c
gcc -Wall -O2 -c GKlib.c -o GKlib.o
Making htable.o from htable.c
gcc -Wall -O2 -c htable.c -o htable.o
htable.c:18: warning: type defaults to 'int' in declaration of 'PRIMES'
Making list.o from list.c
gcc -Wall -O2 -c list.c -o list.o
list.c: In function 'delthisnode':
list.c:70: warning: control reaches end of non-void function
Making refine.o from refine.c
gcc -Wall -O2 -c refine.c -o refine.o
Making bucketlist.o from bucketlist.c
gcc -Wall -O2 -c bucketlist.c -o bucketlist.o
Making stat.o from stat.c
gcc -Wall -O2 -c stat.c -o stat.o
stat.c: In function 'PrintOrderResults':
stat.c:154: warning: unused variable 'gsum'
stat.c:154: warning: unused variable 'sum'
stat.c:154: warning: unused variable 'k'
stat.c:154: warning: unused variable 'j'
stat.c:154: warning: unused variable 'i'
bucketlist.c: In function 'GetMaxGainVtx':
bucketlist.c:335: warning: 'vtx' may be used uninitialized in this function
bucketlist.c: In function 'SeeMaxGainVtx':
bucketlist.c:385: warning: 'vtx' may be used uninitialized in this function
Making mlevelpart.o from mlevelpart.c
gcc -Wall -O2 -c mlevelpart.c -o mlevelpart.o
Making separator.o from separator.c
gcc -Wall -O2 -c separator.c -o separator.o
mlevelpart.c: In function 'MultiLevelPart':
mlevelpart.c:35: warning: unused variable 'j'
mlevelpart.c:35: warning: unused variable 'i'
mlevelpart.c: In function 'RMLB':
mlevelpart.c:106: warning: unused variable 'j'
mlevelpart.c:173: warning: control reaches end of non-void function
Making mlevelorder.o from mlevelorder.c
gcc -Wall -O2 -c mlevelorder.c -o mlevelorder.o
Making smbfactor.o from smbfactor.c
gcc -Wall -O2 -c smbfactor.c -o smbfactor.o
Making smbfct.o from smbfct.c
gcc -Wall -O2 -c smbfct.c -o smbfct.o
Making mincover.o from mincover.c
gcc -Wall -O2 -c mincover.c -o mincover.o
Making initpart.o from initpart.c
gcc -Wall -O2 -c initpart.c -o initpart.o
Making lanczos.o from lanczos.c
gcc -Wall -O2 -c lanczos.c -o lanczos.o
Making mmd.o from mmd.c
gcc -Wall -O2 -c mmd.c -o mmd.o
lanczos.c: In function 'lanczos':
lanczos.c:31: warning: 'bd' may be used uninitialized in this function
lanczos.c:30: warning: 'du' may be used uninitialized in this function
lanczos.c:31: warning: 'xu' may be used uninitialized in this function
lanczos.c:31: warning: 'xc' may be used uninitialized in this function
Making balpart.o from balpart.c
gcc -Wall -O2 -c balpart.c -o balpart.o
Making kwaypart.o from kwaypart.c
gcc -Wall -O2 -c kwaypart.c -o kwaypart.o
Making kwayfm.o from kwayfm.c
gcc -Wall -O2 -c kwayfm.c -o kwayfm.o
Making kwaygreedy.o from kwaygreedy.c
gcc -Wall -O2 -c kwaygreedy.c -o kwaygreedy.o
kwayfm.c: In function 'KWay_BalanceFM':
kwayfm.c:260: warning: 'lastmax' may be used uninitialized in this function
kwayfm.c:253: warning: 'higain' may be used uninitialized in this function
Making entrypoint.o from entrypoint.c
gcc -Wall -O2 -c entrypoint.c -o entrypoint.o
Making io.o from io.c
gcc -Wall -O2 -c io.c -o io.o
entrypoint.c: In function 'PMETIS':
entrypoint.c:64: warning: unused variable 'j'
entrypoint.c:64: warning: unused variable 'i'
entrypoint.c: In function 'KMETIS':
entrypoint.c:148: warning: unused variable 'j'
entrypoint.c:148: warning: unused variable 'i'
entrypoint.c: In function 'OMETIS':
entrypoint.c:215: warning: unused variable 'j'
entrypoint.c: In function 'ConvertGraph':
entrypoint.c:274: warning: unused variable 'k'
entrypoint.c: In function 'OMETIS':
entrypoint.c:263: warning: control reaches end of non-void function
entrypoint.c: In function 'KMETIS':
entrypoint.c:184: warning: control reaches end of non-void function
entrypoint.c: In function 'PMETIS':
entrypoint.c:102: warning: control reaches end of non-void function
ar cqls util.o match.o coarsen.o memory.o fm.o GKlib.o htable.o list.o refine.o bucketlist.o stat.o mlevelpart.o separator.o mlevelorder.o smbfactor.o smbfct.o mincover.o initpart.o lanczos.o mmd.o balpart.o kwaypart.o kwayfm.o kwaygreedy.o entrypoint.o io.o
ar: util.o: Inappropriate file type or format
make[2]: *** [all] Error 1
make[1]: *** [lib] Error 2
LIBRARIES BUILT ... NOW LINKING OpenSees PROGRAM
make[1]: Nothing to be done for `tcl'.
Makefile:21: warning: overriding commands for target `tcl'
Makefile:13: warning: ignoring old commands for target `tcl'
make[2]: Nothing to be done for `tcl'.
i686-apple-darwin8-g++-4.0.1: /Users/rjaeger1/College/Research/OpenSees/OpenSees-CVS/SRC/renderer/PlainMap.o: No such file or directory
i686-apple-darwin8-g++-4.0.1: /Users/rjaeger1/College/Research/OpenSees/lib/libOpenSees.a: No such file or directory
make[1]: *** [tcl] Error 1
make: *** [all] Error 2