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

⟦0a1122533⟧ TextFile

    Length: 2398 (0x95e)
    Types: TextFile
    Names: »ssba.ini«

Derivation

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

TextFile

#! /bin/sh
#				SSBA 1.21F
#
# Script : ssba.ini
#
# Choix des commandes (compilateurs et des options de
# compilation (coprocesseurs flottants), printer, pager.
#
# Mise en oeuvre :
#
#	lance automatiquement par ssba.cf et ssba
#	ssba.ini (interactif)
#	awk -F: '{print $2}' <ssba.def | ssba.ini    (valeurs par defaut)
#
###########################################
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...........(defaut: cc ) :" ; read cc
if [ "$cc" = "" ]
then
	cc=cc
fi
echo $cc
echo $cc > $INSTALL/cc.cmd
CC="Commande C : $cc"
#
# Option d'optimisation compilateur C
#
echo "CC-optimisation......(defaut: -O ) :" ; read optcc
if [ "$optcc" = "" ]
then
	optcc=-O
fi
echo $optcc
echo $optcc > $INSTALL/cc.opt
CC="$CC $optcc"
#
# Option flottante compilateur C
#
echo "CC-option flottante..(defaut:    ) :" ; 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.....(defaut: f77) :" ; read fortran
if [ "$fortran" = "" ]
then
	fortran=f77
fi
echo $fortran
echo $fortran > $INSTALL/fortran.cmd
FC="Commande Fortran : $fortran"
#
# Option d'optimisation compilateur Fortran
#
echo "Fortran-optimisation.(defaut: -O ) :" ; read optfortran
if [ "$optfortran" = "" ]
then
	optfortran=-O
fi
echo $optfortran
echo $optfortran > $INSTALL/fortran.opt
FC="$FC $optfortran"
#
# Option flottante compilateur Fortran
#
echo "F-option flottante...(defaut:    ) :" ; 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..............(defaut:  lp) :" ; read printer
if [ "$printer" = "" ]
then
	printer=lp
fi
echo $printer
echo $printer > $INSTALL/printer.cmd
PR="Printer : $printer"
#
# Options Printer
#
echo "Options Printer.....(defaut: -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...............(defaut: more) :" ; read pager
if [ "$pager" = "" ]
then
	pager=more
fi
echo $pager
echo $pager > $INSTALL/pager.cmd
PG="Pager : $pager"
echo $PG >>$RES