Warning, /tools/build_options/darwin_absoft_f77 is written in an unsupported language. File is not indexed.
view on githubraw file Latest commit add29e06 on 2018-01-31 20:35:05 UTC
6795c0c705 Ed H*0001 #!/bin/bash
0002 #
0003 # tested on G4-PowerBook, 1GHz
6144427bd2 Jean*0004 # uname -mrsvp:
6795c0c705 Ed H*0005 # Darwin 6.6 Darwin Kernel Version 6.6: Thu May 1 21:48:54 PDT 2003;
0006 # root:xnu/xnu-344.34.obj~1/RELEASE_PPC Power Macintosh powerpc
6144427bd2 Jean*0007 # cc-compiler is available only with the Apple Developer Tools,
0008 # so make sure that those are installed
6795c0c705 Ed H*0009 #
0010
0011 CPP='/usr/bin/cpp -traditional -P'
0012 FC='/Applications/Absoft/bin/f77'
0013 LINK='/Applications/Absoft/bin/f77'
0014 # -w: allow long source lines (up to 132 columns)
0015 # -W: suppress all warning messages
6144427bd2 Jean*0016 # -N113: promotes real to 64bit, and complex to 128bit
6795c0c705 Ed H*0017 # -N109: folds everything into UPPER case
0018 # -f: folds everything into lower case
0019 # -N3: inlcude record length information for squential unformatted files
0020 # -N15: append trailing underscores to procedure names
0021 # -q: quiet mode
0022 # -O: standard set of optimizations
0023 # -U: standard level of loop-unrolling (slows down compilation considerably)
0024 FFLAGS='-w -W -f -N15 -N113 -q'
0025 FOPTIM='-O -U'
0026 NOOPTFLAGS=
0027 LIBS='-L/Applications/Absoft/lib -lU77'
0028
0029 S64='$(TOOLSDIR)/set64bitConst.sh'
0030 #MAKEDEPEND='${TOOLSDIR}/xmakedepend'
0031 MAKEDEPEND='makedepend'
0032 DEFINES='-DWORDLENGTH=4'