Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/script/hsc2hs.inst

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#!/bin/sh
#	simple redirection script to find the correct executable
#	for this machine architecture
SCRIPTDIR=${SCRIPTDIR-ScriptDir}
EXEDIR=${EXEDIR-ExecutableDir}
INCDIR=${INCDIR-IncludeDir}
MACHINE=${MACHINE-"`$SCRIPTDIR/harch`"}
export MACHINE EXEDIR SCRIPTDIR

if [ ! -d $EXEDIR/$MACHINE ]
then
  echo "`basename $0` is not installed/configured for $MACHINE."
  echo "  See your system administrator."
  exit 1
fi

# (Flags are sourced from machine-specific configuration)
. $EXEDIR/$MACHINE/config

HSC2HSOPTS="--cc=$CC --ld=$CC --cflag=-D__NHC__=$VERSIONNUM --cflag=-m32 --lflag=-m32 -I$INCDIR"
if test $USINGRTS -eq 0 ; then
  HSC2HSOPTS="- $HSC2HSOPTS"
fi

TEMPLATE="--template=$SCRIPTDIR/template-hsc.h"

# Now let's get started.
exec $EXEDIR/$MACHINE/hsc2hs $HSC2HSOPTS $TEMPLATE $@

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.