DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T s

⟦e44d5a0d6⟧ TextFile

    Length: 2339 (0x923)
    Types: TextFile
    Names: »ssba.ini«

Derivation

└─⟦db229ac7e⟧ Bits:30007240 EUUGD20: SSBA 1.2 / AFW Benchmarks
    └─⟦this⟧ »EUUGD20/AFUU-ssba1.21/ssba1.21E/ssba/ssba.ini« 

TextFile

#! /bin/sh
#				SSBA 1.21E
#
# Script : ssba.ini
#
# Choice of the commands : compilers and compiler options
# (optimization, floating point coprocessors), printer, pager.
#
#	called by ssba.cf and ssba
#	ssba.ini (interactive mode)
#	awk -F: '{print $2}' <ssba.def | ssba.ini    (default values)
#
###########################################
LOG=../results/ssba.log
RES=../results/ssba.res
SYN=../results/synthese
INSTALL=../install
if [ ! -d $INSTALL ]
then
	mkdir $INSTALL
fi
#
# C-compiler
#
echo "C-compiler...........(default: cc ) :" ; read cc
if [ "$cc" = "" ]
then
	cc=cc
fi
echo $cc
echo $cc > $INSTALL/cc.cmd
CC="Command C : $cc"
#
# C optimization level
#
echo "C-optimization.......(default: -O ) :" ; read optcc
if [ "$optcc" = "" ]
then
	optcc=-O
fi
echo $optcc
echo $optcc > $INSTALL/cc.opt
CC="$CC $optcc"
#
# C floating point option
#
echo "C-floating option....(default:    ) :" ; read flocc
if [ "$flocc" = "" ]
then
	flocc=""
fi
echo $flocc
echo $flocc > $INSTALL/cc.flo
CC="$CC $flocc"
echo $CC >>$RES
#
# Fortran-compiler
#
echo "Fortran-compiler.....(default: f77) :" ; read fortran
if [ "$fortran" = "" ]
then
	fortran=f77
fi
echo $fortran
echo $fortran > $INSTALL/fortran.cmd
FC="Command Fortran : $fortran"
#
# Fortran optimization level
#
echo "Fortran-optimization.(default: -O ) :" ; read optfortran
if [ "$optfortran" = "" ]
then
	optfortran=-O
fi
echo $optfortran
echo $optfortran > $INSTALL/fortran.opt
FC="$FC $optfortran"
#
# Fortran floating point option
#
echo "F-floating option....(default:    ) :" ; read flofortran
if [ "$flofortran" = "" ]
then
	flofortran=""
fi
echo $flofortran
echo $flofortran > $INSTALL/fortran.flo
FC="$FC $flofortran"
echo $FC >>$RES
echo "$CC I $FC" >>$SYN
#
# Printer
#
echo "Printer..............(default: lp ) :" ; read printer
if [ "$printer" = "" ]
then
	printer=lp
fi
echo $printer
echo $printer > $INSTALL/printer.cmd
PR="Printer : $printer"
#
# Printer Options
#
echo "Printer options......(default: -l66) :" ; read optprinter
if [ "$optprinter" = "" ]
then
	optprinter=-l66
fi
echo $optprinter
echo $optprinter > $INSTALL/printer.opt
PR="$PR $optprinter"
echo $PR >>$RES
#
# Pager
#
echo "Pager................(default: more) :" ; read pager
if [ "$pager" = "" ]
then
	pager=more
fi
echo $pager
echo $pager > $INSTALL/pager.cmd
PG="Pager : $pager"
echo $PG >>$RES