#!/bin/sh

#**************************************************************************
#*                                                                        *
#*                                 OCaml                                  *
#*                                                                        *
#*            Xavier Leroy, projet Cristal, INRIA Rocquencourt            *
#*                                                                        *
#*   Copyright 2012 Institut National de Recherche en Informatique et     *
#*     en Automatique.                                                    *
#*                                                                        *
#*   All rights reserved.  This file is distributed under the terms of    *
#*   the GNU Lesser General Public License version 2.1, with the          *
#*   special exception on linking described in the file LICENSE.          *
#*                                                                        *
#**************************************************************************

if $verbose; then
  echo "tryassemble: $aspp -o tst $*" >&2
  $aspp -o tst $* || exit 100
else
  $aspp -o tst $* 2> /dev/null || exit 100
fi

# test as also (if differs)
if test "$aspp" != "$as"; then
  if $verbose; then
    echo "tryassemble: $as -o tst $*" >&2
    $as -o tst $* || exit 100
  else
    $as -o tst $* 2> /dev/null || exit 100
  fi
fi
