This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

possible bug in cygwin


hello,

I have added a new target "avaz" in gcc and it
configured correctly (configuring as a cross
compiler). I made a new folder in the config directory
by the name of avaz and copied all the files from the
config/arm fokder to the config/avaz directory,
renaming the arm prefix with the avaz prefix. After
wards I made a change in the .md file:
 
(define_insn "*movsi_insn"
  [(set (match_operand:SI  0 "general_operand"
"=r,r,r,m")
	(match_operand:SI 1 "general_operand" "rI,K,mi,r"))]
  "register_operand (operands[0], SImode)
   || register_operand (operands[1], SImode)"
  "@
   move%?\\t%0, %1         ;previously mov
   mvn%?\\t%0, #%B1
   ldr%?\\t%0, %1
   store%?\\t%1, %0"       ;previously str
[(set_attr "type" "*,*,load,store1")])



 while making the bootsrtap compiler, using "make" the
following error was encoutered:


./genattr
/usr/local/bin/gcctest/gcc/config/avaz/avaz.m
d > tmp-attr.h
Expected character (.  Found character 
.  At file position: 333
Following characters are:
	
;; This file is part of GNU CC.

;; GNU CC is free software; you can redistribute it
and/or modify
;; it under the terms of the GNU General Public
License as published by
;; the Free Software FouAborting.
genattr: Internal compiler error in `dump_and_abort',
at /usr/local/bin/gcctest/gcc/rtl.c:539
Please submit a full bug report.
See <URL:http://www.gnu.org/software/gcc/bugs.html>
for instructions.
make[1]: *** [s-attr] Error 33
make[1]: Leaving directory `/usr/local/bin/BUILD/gcc'
make: *** [all-gcc] Error 2
  

this error was encouteredin using cygwin. Performaing
the same method in linux I only got assembler errors
and make was successful in producing cc1.    

regards,
danish

__________________________________________________
Do You Yahoo!?
Great stuff seeking new owners in Yahoo! Auctions! 
http://auctions.yahoo.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]