# HG changeset patch # User greg # Date 1253277057 -7200 # Node ID 44909ffb2cc652b6f1e5636edfec9c6089208e43 # Parent bde723abfdfcfae5587feb110c8a02d8c67d155e Fix defaults compiler and linker names for win32 diff -r bde723abfdfc -r 44909ffb2cc6 targets/Win32/XSD --- a/targets/Win32/XSD Fri Sep 04 11:24:25 2009 +0200 +++ b/targets/Win32/XSD Fri Sep 18 14:30:57 2009 +0200 @@ -1,7 +1,10 @@ <xsd:element name="Win32"> <xsd:complexType> - %(toolchain_gcc)s + <xsd:attribute name="Compiler" type="xsd:string" use="optional" default="mingw32-gcc-sjlj"/> + <xsd:attribute name="CFLAGS" type="xsd:string" use="required"/> + <xsd:attribute name="Linker" type="xsd:string" use="optional" default="mingw32-g++-sjlj"/> + <xsd:attribute name="LDFLAGS" type="xsd:string" use="required"/> </xsd:complexType> </xsd:element>