mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-28 22:40:24 +00: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:
parent
49f09e1865
commit
fcf4d2868e
@ -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)
|
||||
|
||||
* 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
|
||||
#
|
||||
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
|
||||
#
|
||||
@ -186,7 +187,13 @@ case "${target}" in
|
||||
configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
|
||||
;;
|
||||
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*)
|
||||
configdirs=`echo ${configdirs} | sed -e 's/ld//;s/gas//'`
|
||||
|
Loading…
Reference in New Issue
Block a user