mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00
Tue Aug 8 23:41:25 1995 Alan Modra <alan@spri.levels.unisa.edu.au>
* configure.in: Consistently use ${target_cpu_type} rather than ${cpu_type} after the loop. * configure: Rebuild. * Makefile.in (targ-cpu.o): Use @target_cpu_type@ rather than @cpu_type@.
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
Tue Aug 8 23:41:25 1995 Alan Modra <alan@spri.levels.unisa.edu.au>
|
||||||
|
|
||||||
|
* configure.in: Consistently use ${target_cpu_type} rather than
|
||||||
|
${cpu_type} after the loop.
|
||||||
|
* configure: Rebuild.
|
||||||
|
* Makefile.in (targ-cpu.o): Use @target_cpu_type@ rather than
|
||||||
|
@cpu_type@.
|
||||||
|
|
||||||
Tue Aug 8 17:27:17 1995 Ken Raeburn <raeburn@cygnus.com>
|
Tue Aug 8 17:27:17 1995 Ken Raeburn <raeburn@cygnus.com>
|
||||||
|
|
||||||
* expr.h (operatorT): Remove comma after last enumerator value.
|
* expr.h (operatorT): Remove comma after last enumerator value.
|
||||||
|
@ -337,7 +337,7 @@ ecoff.o : ecoff.c ecoff.h \
|
|||||||
stabs.o : stabs.c subsegs.h $(srcdir)/../include/aout/stab_gnu.h
|
stabs.o : stabs.c subsegs.h $(srcdir)/../include/aout/stab_gnu.h
|
||||||
atof-targ.o : atof-targ.c
|
atof-targ.o : atof-targ.c
|
||||||
obj-format.o : obj-format.c
|
obj-format.o : obj-format.c
|
||||||
targ-cpu.o : targ-cpu.c $(TARG_CPU_DEP_@cpu_type@)
|
targ-cpu.o : targ-cpu.c $(TARG_CPU_DEP_@target_cpu_type@)
|
||||||
|
|
||||||
obj-elf.o : $(srcdir)/config/obj-elf.c
|
obj-elf.o : $(srcdir)/config/obj-elf.c
|
||||||
$(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/config/obj-elf.c
|
$(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $(srcdir)/config/obj-elf.c
|
||||||
|
50
gas/configure
vendored
50
gas/configure
vendored
@ -827,10 +827,6 @@ for this_target in $target $canon_targets ; do
|
|||||||
*) ;;
|
*) ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
case ${cpu_type} in
|
|
||||||
m68k) extra_objects="$extra_objects m68k-parse.o" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# See if we really can support this configuration with the emulation code.
|
# See if we really can support this configuration with the emulation code.
|
||||||
|
|
||||||
if test $this_target = $target ; then
|
if test $this_target = $target ; then
|
||||||
@ -871,6 +867,10 @@ for this_target in $target $canon_targets ; do
|
|||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
||||||
|
case ${cpu_type} in
|
||||||
|
m68k) extra_objects="$extra_objects m68k-parse.o" ;;
|
||||||
|
esac
|
||||||
|
|
||||||
done
|
done
|
||||||
|
|
||||||
# Assign floating point type. Most processors with FP support
|
# Assign floating point type. Most processors with FP support
|
||||||
@ -886,8 +886,8 @@ case "${obj_format}" in
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
||||||
if test ! -r ${srcdir}/config/tc-${cpu_type}.c; then
|
if test ! -r ${srcdir}/config/tc-${target_cpu_type}.c; then
|
||||||
{ echo "configure: error: GAS does not support target CPU ${cpu_type}" 1>&2; exit 1; }
|
{ echo "configure: error: GAS does not support target CPU ${target_cpu_type}" 1>&2; exit 1; }
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test ! -r ${srcdir}/config/obj-${obj_format}.c; then
|
if test ! -r ${srcdir}/config/obj-${obj_format}.c; then
|
||||||
@ -1076,14 +1076,14 @@ cat >> confdefs.h <<EOF
|
|||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
||||||
files="config/tc-${cpu_type}.c config/tc-${cpu_type}.h \
|
files="config/tc-${target_cpu_type}.c config/tc-${target_cpu_type}.h \
|
||||||
config/obj-${obj_format}.h config/obj-${obj_format}.c \
|
config/obj-${obj_format}.h config/obj-${obj_format}.c \
|
||||||
config/te-${te_file}.h config/atof-${atof}.c \
|
config/te-${te_file}.h config/atof-${atof}.c \
|
||||||
$extra_files"
|
$extra_files"
|
||||||
links="targ-cpu.c targ-cpu.h obj-format.h obj-format.c targ-env.h atof-targ.c \
|
links="targ-cpu.c targ-cpu.h obj-format.h obj-format.c targ-env.h atof-targ.c \
|
||||||
$extra_links"
|
$extra_links"
|
||||||
|
|
||||||
case ${primary_bfd_gas}-${cpu_type}-${obj_format} in
|
case ${primary_bfd_gas}-${target_cpu_type}-${obj_format} in
|
||||||
yes-*-coff) need_bfd=yes ;;
|
yes-*-coff) need_bfd=yes ;;
|
||||||
no-*-coff) need_bfd=yes
|
no-*-coff) need_bfd=yes
|
||||||
cat >> confdefs.h <<\EOF
|
cat >> confdefs.h <<\EOF
|
||||||
@ -1230,7 +1230,7 @@ else
|
|||||||
# On the NeXT, cc -E runs the code through the compiler's parser,
|
# On the NeXT, cc -E runs the code through the compiler's parser,
|
||||||
# not just through cpp.
|
# not just through cpp.
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1230 "configure"
|
#line 1234 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
Syntax Error
|
Syntax Error
|
||||||
@ -1244,7 +1244,7 @@ else
|
|||||||
rm -rf conftest*
|
rm -rf conftest*
|
||||||
CPP="${CC-cc} -E -traditional-cpp"
|
CPP="${CC-cc} -E -traditional-cpp"
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1244 "configure"
|
#line 1248 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
Syntax Error
|
Syntax Error
|
||||||
@ -1277,7 +1277,7 @@ if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1277 "configure"
|
#line 1281 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
#include <$ac_hdr>
|
#include <$ac_hdr>
|
||||||
EOF
|
EOF
|
||||||
@ -1329,7 +1329,7 @@ else
|
|||||||
ac_cv_c_cross=yes
|
ac_cv_c_cross=yes
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1329 "configure"
|
#line 1333 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
main(){return(0);}
|
main(){return(0);}
|
||||||
EOF
|
EOF
|
||||||
@ -1352,7 +1352,7 @@ if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1352 "configure"
|
#line 1356 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
#include <alloca.h>
|
#include <alloca.h>
|
||||||
int main() { return 0; }
|
int main() { return 0; }
|
||||||
@ -1383,7 +1383,7 @@ if eval "test \"`echo '$''{'ac_cv_func_alloca'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1383 "configure"
|
#line 1387 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
@ -1441,7 +1441,7 @@ if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1441 "configure"
|
#line 1445 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
#if defined(CRAY) && ! defined(CRAY2)
|
#if defined(CRAY) && ! defined(CRAY2)
|
||||||
webecray
|
webecray
|
||||||
@ -1469,7 +1469,7 @@ if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1469 "configure"
|
#line 1473 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
/* System header to define __stub macros and hopefully few prototypes,
|
/* System header to define __stub macros and hopefully few prototypes,
|
||||||
which can conflict with char $ac_func(); below. */
|
which can conflict with char $ac_func(); below. */
|
||||||
@ -1523,7 +1523,7 @@ else
|
|||||||
ac_cv_c_stack_direction=0
|
ac_cv_c_stack_direction=0
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1523 "configure"
|
#line 1527 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
find_stack_direction ()
|
find_stack_direction ()
|
||||||
{
|
{
|
||||||
@ -1565,7 +1565,7 @@ else
|
|||||||
ac_cv_c_inline=no
|
ac_cv_c_inline=no
|
||||||
for ac_kw in inline __inline__ __inline; do
|
for ac_kw in inline __inline__ __inline; do
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1565 "configure"
|
#line 1569 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
int main() { return 0; }
|
int main() { return 0; }
|
||||||
@ -1604,7 +1604,7 @@ if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1604 "configure"
|
#line 1608 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
/* System header to define __stub macros and hopefully few prototypes,
|
/* System header to define __stub macros and hopefully few prototypes,
|
||||||
which can conflict with char $ac_func(); below. */
|
which can conflict with char $ac_func(); below. */
|
||||||
@ -1657,7 +1657,7 @@ if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1657 "configure"
|
#line 1661 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
/* System header to define __stub macros and hopefully few prototypes,
|
/* System header to define __stub macros and hopefully few prototypes,
|
||||||
which can conflict with char $ac_func(); below. */
|
which can conflict with char $ac_func(); below. */
|
||||||
@ -1710,7 +1710,7 @@ if eval "test \"`echo '$''{'gas_cv_assert_ok'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1710 "configure"
|
#line 1714 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -1767,7 +1767,7 @@ if eval "test \"`echo '$''{'gas_cv_decl_needed_malloc'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1767 "configure"
|
#line 1771 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
$gas_test_headers
|
$gas_test_headers
|
||||||
int main() { return 0; }
|
int main() { return 0; }
|
||||||
@ -1803,7 +1803,7 @@ if eval "test \"`echo '$''{'gas_cv_decl_needed_free'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1803 "configure"
|
#line 1807 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
$gas_test_headers
|
$gas_test_headers
|
||||||
int main() { return 0; }
|
int main() { return 0; }
|
||||||
@ -1842,7 +1842,7 @@ if eval "test \"`echo '$''{'gas_cv_decl_needed_errno'+set}'`\" = set"; then
|
|||||||
echo $ac_n "(cached) $ac_c" 1>&6
|
echo $ac_n "(cached) $ac_c" 1>&6
|
||||||
else
|
else
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 1842 "configure"
|
#line 1846 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#ifdef HAVE_ERRNO_H
|
#ifdef HAVE_ERRNO_H
|
||||||
@ -2002,7 +2002,7 @@ s%@OPCODES_LIB@%$OPCODES_LIB%g
|
|||||||
/@target_frag@/r $target_frag
|
/@target_frag@/r $target_frag
|
||||||
s%@target_frag@%%g
|
s%@target_frag@%%g
|
||||||
s%@extra_objects@%$extra_objects%g
|
s%@extra_objects@%$extra_objects%g
|
||||||
s%@cpu_type@%$cpu_type%g
|
s%@target_cpu_type@%$target_cpu_type%g
|
||||||
s%@obj_format@%$obj_format%g
|
s%@obj_format@%$obj_format%g
|
||||||
s%@atof@%$atof%g
|
s%@atof@%$atof%g
|
||||||
s%@BFDLIB@%$BFDLIB%g
|
s%@BFDLIB@%$BFDLIB%g
|
||||||
|
@ -300,10 +300,6 @@ changequote([,])dnl
|
|||||||
*) ;;
|
*) ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
case ${cpu_type} in
|
|
||||||
m68k) extra_objects="$extra_objects m68k-parse.o" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# See if we really can support this configuration with the emulation code.
|
# See if we really can support this configuration with the emulation code.
|
||||||
|
|
||||||
if test $this_target = $target ; then
|
if test $this_target = $target ; then
|
||||||
@ -341,6 +337,10 @@ changequote([,])dnl
|
|||||||
|
|
||||||
test -n "$want_sparcv9" && AC_DEFINE(sparcv9)
|
test -n "$want_sparcv9" && AC_DEFINE(sparcv9)
|
||||||
|
|
||||||
|
case ${cpu_type} in
|
||||||
|
m68k) extra_objects="$extra_objects m68k-parse.o" ;;
|
||||||
|
esac
|
||||||
|
|
||||||
done
|
done
|
||||||
|
|
||||||
# Assign floating point type. Most processors with FP support
|
# Assign floating point type. Most processors with FP support
|
||||||
@ -359,8 +359,8 @@ dnl
|
|||||||
dnl Make sure the desired support files exist.
|
dnl Make sure the desired support files exist.
|
||||||
dnl
|
dnl
|
||||||
|
|
||||||
if test ! -r ${srcdir}/config/tc-${cpu_type}.c; then
|
if test ! -r ${srcdir}/config/tc-${target_cpu_type}.c; then
|
||||||
AC_MSG_ERROR(GAS does not support target CPU ${cpu_type})
|
AC_MSG_ERROR(GAS does not support target CPU ${target_cpu_type})
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test ! -r ${srcdir}/config/obj-${obj_format}.c; then
|
if test ! -r ${srcdir}/config/obj-${obj_format}.c; then
|
||||||
@ -465,14 +465,14 @@ AC_SUBST(extra_objects)
|
|||||||
AC_DEFINE_UNQUOTED(EMULATIONS, $EMULATIONS)
|
AC_DEFINE_UNQUOTED(EMULATIONS, $EMULATIONS)
|
||||||
AC_DEFINE_UNQUOTED(DEFAULT_EMULATION, "$DEFAULT_EMULATION")
|
AC_DEFINE_UNQUOTED(DEFAULT_EMULATION, "$DEFAULT_EMULATION")
|
||||||
|
|
||||||
files="config/tc-${cpu_type}.c config/tc-${cpu_type}.h \
|
files="config/tc-${target_cpu_type}.c config/tc-${target_cpu_type}.h \
|
||||||
config/obj-${obj_format}.h config/obj-${obj_format}.c \
|
config/obj-${obj_format}.h config/obj-${obj_format}.c \
|
||||||
config/te-${te_file}.h config/atof-${atof}.c \
|
config/te-${te_file}.h config/atof-${atof}.c \
|
||||||
$extra_files"
|
$extra_files"
|
||||||
links="targ-cpu.c targ-cpu.h obj-format.h obj-format.c targ-env.h atof-targ.c \
|
links="targ-cpu.c targ-cpu.h obj-format.h obj-format.c targ-env.h atof-targ.c \
|
||||||
$extra_links"
|
$extra_links"
|
||||||
|
|
||||||
case ${primary_bfd_gas}-${cpu_type}-${obj_format} in
|
case ${primary_bfd_gas}-${target_cpu_type}-${obj_format} in
|
||||||
yes-*-coff) need_bfd=yes ;;
|
yes-*-coff) need_bfd=yes ;;
|
||||||
no-*-coff) need_bfd=yes
|
no-*-coff) need_bfd=yes
|
||||||
AC_DEFINE(MANY_SEGMENTS) ;;
|
AC_DEFINE(MANY_SEGMENTS) ;;
|
||||||
@ -486,7 +486,7 @@ case ${reject_dev_configs}-${dev} in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
AC_SUBST(cpu_type)
|
AC_SUBST(target_cpu_type)
|
||||||
AC_SUBST(obj_format)
|
AC_SUBST(obj_format)
|
||||||
AC_SUBST(atof)
|
AC_SUBST(atof)
|
||||||
dnl AC_SUBST(emulation)
|
dnl AC_SUBST(emulation)
|
||||||
|
Reference in New Issue
Block a user