beremiz
Clone
Summary
Browse
Changes
Graph
Changes merged
2009-09-21, 'Laurent Bessard
31d08063b5d6
Parents
6a7ff66a811d
9b1801ef99b5
Children
77e23bf04c33
Changes merged
2 files changed, 5 insertions(+), 2 deletions(-)
+1
-1
runtime/PLCObject.py
+4
-1
targets/Win32/XSD
--- a/runtime/PLCObject.py Mon Sep 21 12:00:52 2009 +0200
+++ b/runtime/PLCObject.py Mon Sep 21 12:12:08 2009 +0200
@@ -187,7 +187,7 @@
for filename in os.listdir(self.workingdir):
name, ext = os.path.splitext(filename)
- if name.startswith("runtime") and ext == ".py":
+ if name.upper().startswith("RUNTIME") and ext.upper() == ".PY":
try:
# TODO handle exceptions in runtime.py
# pyfile may redefine _runtime_cleanup
--- a/targets/Win32/XSD Mon Sep 21 12:00:52 2009 +0200
+++ b/targets/Win32/XSD Mon Sep 21 12:12:08 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>