From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2747 invoked by alias); 10 May 2004 13:33:18 -0000 Mailing-List: contact sid-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: sid-owner@sources.redhat.com Received: (qmail 2529 invoked from network); 10 May 2004 13:33:08 -0000 Received: from unknown (HELO jensun147.jennic.com) (213.143.5.74) by sourceware.org with SMTP; 10 May 2004 13:33:08 -0000 Received: from JENPC112 (jenpc112.jennic.com [99.99.98.112]) by jensun147.jennic.com (8.9.3+Sun/8.9.3) with SMTP id KAA22398; Mon, 10 May 2004 10:23:03 +0100 (BST) From: "Robert Cragie" To: Cc: "SID" Subject: RE: Patch to fix init_disassemble_info linking Date: Mon, 10 May 2004 13:33:00 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit In-Reply-To: <000201c4366a$adbaa4a0$5514010a@telxsi.com> X-SW-Source: 2004-q2/txt/msg00026.txt.bz2 It looks like there is an error in the Makefile, which has come from Makefile.in, which is in turn generated by 'automake' from Makefile.am - I feel it might be something to do with incompatibilities in 'automake'. The error is probably this line, as there is no '\' at the end: > OPCODES_COMPILE_FLAGS = -DHAVE_CONFIG_H       -I../../../opcodes      -I../../../bfd If you have 'automake' on your cygwin system (if not, I would suggest getting it from Redhat), I would patch 'Makefile.am' only, then run automake. Alternatively you could try this simpler patch for 'Makefile.in' which sorts the problem out: Index: sid/component/cgen-cpu/Makefile.in =================================================================== RCS file: /cvs/src/src/sid/component/cgen-cpu/Makefile.in,v retrieving revision 1.9 diff -r1.9 Makefile.in 115,116c115,116 < libcgencpu_la_LIBADD = @cpu_libs@ $(INTLLIBS) $(LIBIBERTY) cgen-asm.lo cgen-dis.lo cgen-opc.lo dis-buf.lo < libcgencpu_la_DEPENDENCIES = @cpu_libs@ cgen-asm.lo cgen-dis.lo cgen-opc.lo dis-buf.lo --- > libcgencpu_la_LIBADD = @cpu_libs@ $(INTLLIBS) $(LIBIBERTY) cgen-asm.lo cgen-dis.lo cgen-opc.lo dis-buf.lo dis-init.lo > libcgencpu_la_DEPENDENCIES = @cpu_libs@ cgen-asm.lo cgen-dis.lo cgen-opc.lo dis-buf.lo dis-init.lo 580a573,575 >       /bin/sh ./libtool --mode=compile $(CC) $(OPCODES_COMPILE_FLAGS) $(CFLAGS) -c $< > > dis-init.lo: ../../../opcodes/dis-init.c You then need to do: make distclean ../src/configure ...etc. make all 2>&1 | tee make.out Please supply inline text output of the error, not JPEGs and especially not bitmaps (as they are large). If you look at the 'make all' line above, it shows you how to do this. The result of the build will then be in 'make.out' - you can cut and paste the error bit. Robert Cragie, Design Engineer _______________________________________________________________ Jennic Ltd, Furnival Street, Sheffield, S1 4QT, UK http://www.jennic.com Tel: +44 (0) 114 281 2655 _______________________________________________________________ > -----Original Message----- > From: Ashutosh [mailto:ashutoshvyas@tataelxsi.co.in] > Sent: 10 May 2004 09:42 > To: 'Robert Cragie' > Subject: RE: Patch to fix init_disassemble_info linking > > > Dear Robert , > Thanks for your solution.I had followed the step which you had > given in your > mail. I patched the Makefile.in and Makefile.asm. > But I am obtaining new error. Please have a look. It is in the JPEG format, > attached with this mail. > Regards, > Ashutosh (from JPEG): Makefile:119: *** missing separator. Stop.