mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-18 16:53:50 +08:00
* configure.in: Only configure erc32 if using gcc.
This commit is contained in:
@ -1,3 +1,13 @@
|
|||||||
|
Mon Jun 24 14:18:26 1996 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
* configure.in: Only configure erc32 if using gcc.
|
||||||
|
|
||||||
|
Tue Jun 4 09:24:21 1996 Michael Meissner <meissner@tiktok.cygnus.com>
|
||||||
|
|
||||||
|
* configure.in (sim_target): Build PowerPC simulator for powerpc
|
||||||
|
System V.4, Solaris, and Elf targets.
|
||||||
|
* configure: Regenerate with autoconf 2.10.
|
||||||
|
|
||||||
Wed May 22 12:10:49 1996 Rob Savoye <rob@chinadoll>
|
Wed May 22 12:10:49 1996 Rob Savoye <rob@chinadoll>
|
||||||
|
|
||||||
* configure.in: Only built erc32 simulator on Unix hosts as it
|
* configure.in: Only built erc32 simulator on Unix hosts as it
|
||||||
|
@ -56,7 +56,16 @@ case "${target}" in
|
|||||||
*-*-go32) sim_target=none ;;
|
*-*-go32) sim_target=none ;;
|
||||||
*-*-winnt) sim_target=none ;;
|
*-*-winnt) sim_target=none ;;
|
||||||
*-*-cygwin32) sim_target=none ;;
|
*-*-cygwin32) sim_target=none ;;
|
||||||
*) sim_target=erc32 ;;
|
*)
|
||||||
|
# The SPARC simulator can only be compiled
|
||||||
|
# by gcc. Highly bogus, but just skip
|
||||||
|
# building it for now.
|
||||||
|
if test "${GCC}" = "yes"; then
|
||||||
|
sim_target=erc32
|
||||||
|
else
|
||||||
|
sim_target=non
|
||||||
|
fi
|
||||||
|
;;
|
||||||
esac ;;
|
esac ;;
|
||||||
*) sim_target=none ;;
|
*) sim_target=none ;;
|
||||||
esac
|
esac
|
||||||
|
Reference in New Issue
Block a user