ProjectController.py
changeset 2729 4e0cd7806776
parent 2712 a00f41d097f3
child 2741 3cc5663af196
child 3239 fe819b4c62c0
--- a/ProjectController.py	Tue Mar 02 09:25:55 2021 +0100
+++ b/ProjectController.py	Tue Mar 02 09:28:44 2021 +0100
@@ -99,11 +99,12 @@
 
 class Iec2CSettings(object):
 
-    def __init__(self):
+    def __init__(self, controler):
         self.iec2c = None
         self.iec2c_buildopts = None
         self.ieclib_path = self.findLibPath()
         self.ieclib_c_path = self.findLibCPath()
+        self.controler = controler
 
     def findObject(self, paths, test):
         path = None
@@ -155,11 +156,11 @@
         try:
             # Invoke compiler.
             # Output files are listed to stdout, errors to stderr
-            _status, result, _err_result = ProcessLogger(None, buildcmd,
+            _status, result, _err_result = ProcessLogger(self.controler.logger, buildcmd,
                                                          no_stdout=True,
                                                          no_stderr=True).spin()
         except Exception:
-            self.logger.write_error(_("Couldn't launch IEC compiler to determine compatible options.\n"))
+            self.controler.logger.write_error(_("Couldn't launch IEC compiler to determine compatible options.\n"))
             return buildopt
 
         for opt in options:
@@ -242,7 +243,7 @@
         ConfigTreeNode.__init__(self)
 
         if ProjectController.iec2c_cfg is None:
-            ProjectController.iec2c_cfg = Iec2CSettings()
+            ProjectController.iec2c_cfg = Iec2CSettings(self)
 
         self.MandatoryParams = None
         self._builder = None