--- a/LPCManager.py Fri May 19 10:14:01 2017 +0200
+++ b/LPCManager.py Fri May 19 10:38:22 2017 +0200
@@ -29,6 +29,13 @@
if __name__ == '__main__':
+ PLC_GOT_module = ['GOT', 'GOT.111', 'GOT.131'] + PLC_MC9_module = ['MC9'] + PLC_module.extend(PLC_MC9_module) + PLC_module.extend(PLC_GOT_module) print "\nUsage of LPCManager.py :"
print "\n %s Projectpath Buildpath port [arch]\n" % sys.argv[0]
@@ -62,12 +69,6 @@
- PLC_GOT_module = ['GOT', 'GOT.111', 'GOT.131']
- PLC_MC9_module = ['MC9']
- PLC_module.extend(PLC_MC9_module)
- PLC_module.extend(PLC_GOT_module)
__builtin__.__dict__["BMZ_DBG"] = os.path.exists("LPC_DEBUG")
if wx.VERSION >= (3, 0, 0):
@@ -105,7 +106,7 @@
features.libraries=[('Native', 'NativeLib.NativeLibrary')]
+if arch in PLC_MC9_module: features.libraries += [('Python', 'py_ext.PythonLibrary'), ('RTC', lambda: PLCLibraryRTC)]
elif arch in PLC_GOT_module:
features.libraries += [('Python', 'py_ext.PythonLibrary'), ('RTC', lambda: PLCLibraryRTC), ('GOT', lambda: PLCLibraryGOT)]