58b72d7e20
(myname): New static global. (main): Recognize new options -a, -c. Also recognize -h if h8/300. Only process -c ifdef SIM_HAVE_SIMCACHE. Only process -p/-s ifdef SIM_HAVE_PROFILE. Parse program name from argv[0] and use in error messages. Pass sim_args to sim_open. Pass prog_args to sim_create_inferior. Add support for incomplete h8/300 termination indicators. (usage): Make more verbose. * aclocal.m4,config.in,tconfig.in,configure.in,configure: New files. * Makefile.in,Make-common.in,callback.c: New files. * nltvals.def,gentmap.c,gentvals.sh: New files.
50 lines
1.7 KiB
Text
50 lines
1.7 KiB
Text
dnl Process this file with autoconf to produce a configure script.
|
|
AC_PREREQ(2.5)dnl
|
|
AC_INIT(Makefile.in)
|
|
|
|
# This is intended for use by the target specific directories, and by us.
|
|
SIM_AC_COMMON
|
|
|
|
# Put a useful copy of CPP_FOR_TARGET in Makefile.
|
|
# This is only used to build the target values header files. These files are
|
|
# shipped with distributions so CPP_FOR_TARGET only needs to work in
|
|
# developer's trees. This value is borrowed from ../../Makefile.in.
|
|
CPP_FOR_TARGET="\` \
|
|
if test -f \$\${rootme}/../../gcc/Makefile ; then \
|
|
if test -f \$\${rootme}/../../\$(TARGET_SUBDIR)/newlib/Makefile ; then \
|
|
echo \$\${rootme}/../../gcc/xgcc -B\$\${rootme}/../../gcc/ -idirafter \$\${rootme}/../../\$(TARGET_SUBDIR)/newlib/targ-include -idirafter \$(srcroot)/newlib/libc/include -nostdinc; \
|
|
else \
|
|
echo \$\${rootme}/../../gcc/xgcc -B\$\${rootme}/../../gcc/; \
|
|
fi; \
|
|
else \
|
|
if test '\$(host_canonical)' = '\$(target_canonical)' ; then \
|
|
echo \$(CC); \
|
|
else \
|
|
t='\$(program_transform_name)'; echo gcc | sed -e 's/x/x/' \$\$t; \
|
|
fi; \
|
|
fi\` -E"
|
|
AC_SUBST(CPP_FOR_TARGET)
|
|
|
|
# Set TARGET_SUBDIR, needed by CPP_FOR_TARGET.
|
|
if test x"${host}" = x"${target}" ; then
|
|
TARGET_SUBDIR="."
|
|
else
|
|
TARGET_SUBDIR=${target_alias}
|
|
fi
|
|
AC_SUBST(TARGET_SUBDIR)
|
|
|
|
case "${target}" in
|
|
*-*-*) TARG_VALS_DEF=nltvals.def ;;
|
|
esac
|
|
|
|
# Discard what SIM_AC_COMMON sets for these.
|
|
sim_link_files="${TARG_VALS_DEF}"
|
|
sim_link_links="targ-vals.def"
|
|
|
|
AC_LINK_FILES($sim_link_files, $sim_link_links)
|
|
|
|
# These aren't all needed yet, but will be eventually.
|
|
AC_CHECK_HEADERS(stdlib.h string.h strings.h time.h sys/times.h)
|
|
|
|
AC_OUTPUT(Makefile,
|
|
[case x$CONFIG_HEADERS in xconfig.h:config.in) echo > stamp-h ;; esac])
|