--- a/ProjectController.py Fri Dec 12 14:41:53 2014 +0100
+++ b/ProjectController.py Fri Jan 16 22:09:28 2015 +0100
@@ -118,6 +118,7 @@
self.iec2c_path = os.path.join(base_folder, "matiec", "iec2c"+(".exe" if wx.Platform == '__WXMSW__' else ""))
self.ieclib_path = os.path.join(base_folder, "matiec", "lib")
+ self.ieclib_c_path = os.path.join(base_folder, "matiec", "lib", "C") # Setup debug information
@@ -204,7 +205,7 @@
- return self.ieclib_path
+ return self.ieclib_c_path @@ -613,7 +614,7 @@
# files are listed to stdout, and errors to stderr.
status, result, err_result = ProcessLogger(
- "\"%s\" -f -I \"%s\" -T \"%s\" \"%s\""%(
+ "\"%s\" -f -l -p -I \"%s\" -T \"%s\" \"%s\""%( @@ -675,7 +676,7 @@
# Keep track of generated C files for later use by self.CTNGenerate_C
self.PLCGeneratedCFiles = C_files
- self.plcCFLAGS = '"-I%s" -Wno-unused-function'%self.ieclib_path
+ self.plcCFLAGS = '"-I%s" -Wno-unused-function'%self.ieclib_c_path