[Mono-list] Problem with CVS, latest mono/libgc/mips_sgi_mach_dep.S

Dick Porter dick@ximian.com
27 Aug 2003 13:36:31 +0100


On Wed, 2003-08-27 at 08:19, Pierre Arnaud wrote:
> This morning, CVS update breaks on Cygwin, because somehow
> mono/libgc/mips_sgi_mach_dep.s became mips_sgi_mach_dep.S
> and this upper case/lower case 's' makes cvs choke on Win32.
> 
> Would it be possible to rename the file back to its original,
> all lower case name (mips_sgi_mach_dep.s) ?

Upper-case .S has a different meaning to lower-case .s to gcc (and
probably other compilers) - it's telling gcc to run the preprocessor on
the file as well as the assembler.

Delete your libgc directory and try checking out (cvs checkout, not
update) again.

- Dick