From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7266 invoked by alias); 29 Aug 2003 19:17:41 -0000 Mailing-List: contact cgen-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cgen-owner@sources.redhat.com Received: (qmail 7250 invoked from network); 29 Aug 2003 19:17:40 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (207.219.125.105) by sources.redhat.com with SMTP; 29 Aug 2003 19:17:40 -0000 Received: from redhat.com (vpn50-63.rdu.redhat.com [172.16.50.63]) by touchme.toronto.redhat.com (Postfix) with ESMTP id 0858680033C; Fri, 29 Aug 2003 15:17:38 -0400 (EDT) Message-ID: <3F4FA6FA.1000602@redhat.com> Date: Fri, 29 Aug 2003 22:26:00 -0000 From: Dave Brolley User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.2) Gecko/20021216 X-Accept-Language: en-us, en MIME-Version: 1.0 To: binutils@sources.redhat.com, cgen@sources.redhat.com Subject: []patch] frv.cpu and frv.opc moved from src/cgen/cpu to src/cpu Content-Type: multipart/mixed; boundary="------------070009090600080908090307" X-SW-Source: 2003-q3/txt/msg00051.txt.bz2 This is a multi-part message in MIME format. --------------070009090600080908090307 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 361 Hi, The official versions of frv.cpu and frv.opc are now in src/cpu. The ones in src/cgen/cpu have been removed. I've committed this patch which copies the files from the new location to the old location temporarily when regenerating frv source files. It would be better if the CGEN application had a way to specify the location of the source files Dave --------------070009090600080908090307 Content-Type: text/plain; name="opcodes.ChangeLog" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="opcodes.ChangeLog" Content-length: 198 2003-08-29 Dave Brolley * Makefile.am (stamp-frv): Copy frv.cpu and frv.opc from $(srcdir)/../cpu temporarily when regenerating source files. * Makefile.in: Regenerated. --------------070009090600080908090307 Content-Type: text/plain; name="opcodes.diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="opcodes.diff.txt" Content-length: 1708 Index: Makefile.am =================================================================== RCS file: /cvs/src/src/opcodes/Makefile.am,v retrieving revision 1.68 diff -c -p -r1.68 Makefile.am *** Makefile.am 14 Aug 2003 07:03:18 -0000 1.68 --- Makefile.am 29 Aug 2003 19:01:08 -0000 *************** stamp-fr30: $(CGENDEPS) $(CPUDIR)/fr30.c *** 409,416 **** $(srcdir)/frv-desc.h $(srcdir)/frv-desc.c $(srcdir)/frv-opc.h $(srcdir)/frv-opc.c $(srcdir)/frv-ibld.c $(srcdir)/frv-asm.c $(srcdir)/frv-dis.c: $(FRV_DEPS) @true ! stamp-frv: $(CGENDEPS) $(CPUDIR)/frv.cpu $(CPUDIR)/frv.opc $(MAKE) run-cgen arch=frv prefix=frv options= extrafiles= $(srcdir)/openrisc-desc.h $(srcdir)/openrisc-desc.c $(srcdir)/openrisc-opc.h $(srcdir)/openrisc-opc.c $(srcdir)/openrisc-ibld.c $(srcdir)/openrisc-asm.c $(srcdir)/openrisc-dis.c: $(OPENRISC_DEPS) @true --- 409,422 ---- $(srcdir)/frv-desc.h $(srcdir)/frv-desc.c $(srcdir)/frv-opc.h $(srcdir)/frv-opc.c $(srcdir)/frv-ibld.c $(srcdir)/frv-asm.c $(srcdir)/frv-dis.c: $(FRV_DEPS) @true ! # .cpu and .opc files for frv are kept in a different directory, but cgen has no switch to specify that location, so ! # copy those file to the regular place. ! stamp-frv: $(CGENDEPS) $(srcdir)/../cpu/frv.cpu $(srcdir)/../cpu/frv.opc ! cp -fp $(srcdir)/../cpu/frv.cpu $(CPUDIR)/frv.cpu ! cp -fp $(srcdir)/../cpu/frv.opc $(CPUDIR)/frv.opc $(MAKE) run-cgen arch=frv prefix=frv options= extrafiles= + rm -f $(CPUDIR)/frv.cpu + rm -f $(CPUDIR)/frv.opc $(srcdir)/openrisc-desc.h $(srcdir)/openrisc-desc.c $(srcdir)/openrisc-opc.h $(srcdir)/openrisc-opc.c $(srcdir)/openrisc-ibld.c $(srcdir)/openrisc-asm.c $(srcdir)/openrisc-dis.c: $(OPENRISC_DEPS) @true --------------070009090600080908090307--