mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-19 22:03:57 +08:00
* configure.in: Build gprof only for native, and don't build it
for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
This commit is contained in:
@ -1,3 +1,12 @@
|
|||||||
|
Wed Jun 9 12:31:34 1993 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
|
* configure.in: Build gprof only for native, and don't build it
|
||||||
|
for mips-*-*, rs6000-*-*, or i[34]86-*-sco*.
|
||||||
|
|
||||||
|
Mon Jun 7 13:12:11 1993 david d `zoo' zuhn (zoo at deneb.cygnus.com)
|
||||||
|
|
||||||
|
* configure.in: don't build gas,ld,binutils on for *-*-sysv4
|
||||||
|
|
||||||
Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
|
Mon Jun 7 11:40:11 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
|
||||||
|
|
||||||
* configure.in (host_tools): Add prms.
|
* configure.in (host_tools): Add prms.
|
||||||
|
11
configure.in
11
configure.in
@ -64,7 +64,8 @@ target_tools="groff"
|
|||||||
# directories to be built in the native environment only
|
# directories to be built in the native environment only
|
||||||
#
|
#
|
||||||
native_only="autoconf cvs diff emacs fileutils find grep groff gzip hello indent
|
native_only="autoconf cvs diff emacs fileutils find grep groff gzip hello indent
|
||||||
ispell m4 rcs recode sed shellutils tar textutils tk uudecode wdiff"
|
ispell m4 rcs recode sed shellutils tar textutils tk uudecode wdiff
|
||||||
|
gprof"
|
||||||
|
|
||||||
# directories to be built in a cross environment only
|
# directories to be built in a cross environment only
|
||||||
#
|
#
|
||||||
@ -186,7 +187,13 @@ case "${target}" in
|
|||||||
configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
|
configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
|
||||||
;;
|
;;
|
||||||
rs6000-*-*)
|
rs6000-*-*)
|
||||||
configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
|
configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//;s/gprof//'`
|
||||||
|
;;
|
||||||
|
mips-*-*)
|
||||||
|
configdirs=`echo ${configdirs} | sed -e 's/gprof//'`
|
||||||
|
;;
|
||||||
|
i[34]86-*-sco*)
|
||||||
|
configdirs=`echo ${configdirs} | sed -e 's/gprof//'`
|
||||||
;;
|
;;
|
||||||
*-*-solaris2*)
|
*-*-solaris2*)
|
||||||
configdirs=`echo ${configdirs} | sed -e 's/ld//;s/gas//'`
|
configdirs=`echo ${configdirs} | sed -e 's/ld//;s/gas//'`
|
||||||
|
Reference in New Issue
Block a user