From: Hans-Peter Nilsson Date: Wed, 1 Dec 2004 02:29:30 +0000 (+0000) Subject: * cgen.sh: New thirteenth parameter opcfile, defaulting to X-Git-Tag: gdb-pre-i18n-errorwarning-20050211~735 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad6e5d2e3124ddc20569dd7a9fce19965a2ad4e3;p=platform%2Fupstream%2Fbinutils.git * cgen.sh: New thirteenth parameter opcfile, defaulting to /dev/null. : Pass -OPC opcfile. * Make-common.in (cgen-desc): Pass $(opcfile) as thirteenth parameter to cgen.sh. --- diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 6ccf986..dbcc0eb 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -739,6 +739,6 @@ cgen-desc: force $(SHELL) $(srccom)/cgen.sh desc $(srcdir) \ $(CGEN) $(CGENDIR) "$(CGENFLAGS)" \ $(arch) "$(FLAGS)" $(cpu) "$(isa)" $(mach) "$(SUFFIX)" \ - $(archfile) ignored + $(archfile) ignored $(opcfile) ## End COMMON_POST_CONFIG_FRAG diff --git a/sim/common/cgen.sh b/sim/common/cgen.sh index 172edcb..8718835 100644 --- a/sim/common/cgen.sh +++ b/sim/common/cgen.sh @@ -3,7 +3,7 @@ # # Usage: /bin/sh cgen.sh {"arch"|"cpu"|"decode"|"defs"|"cpu-decode"} \ # srcdir cgen cgendir cgenflags \ -# arch archflags cpu mach suffix archfile extrafiles +# arch archflags cpu mach suffix archfile extrafiles opcfile # # We store the generated files in the source directory until we decide to # ship a Scheme interpreter (or other implementation) with gdb/binutils. @@ -26,9 +26,12 @@ shift ; mach=$9 shift ; suffix=$9 shift ; archfile=$9 shift ; extrafiles=$9 +shift ; opcfile=$9 rootdir=${srcdir}/../.. +test -z "${opcfile}" && opcfile=/dev/null + if test -z "$isa" ; then isa=all prefix=$cpu @@ -196,6 +199,7 @@ desc) ${cgen} -s ${cgendir}/cgen-opc.scm \ -s ${cgendir} \ ${cgenflags} \ + -OPC ${opcfile} \ -f "${archflags}" \ -m ${mach} \ -a ${archfile} \