--- a/c_ext/c_ext.py Fri Apr 22 19:49:10 2016 +0300
+++ b/c_ext/c_ext.py Fri Apr 22 21:26:31 2016 +0300
@@ -99,7 +99,7 @@
- matiec_flags = '"-l -p -I%s"'%os.path.abspath(self.GetCTRoot().GetIECLibPath())
+ matiec_CFLAGS = '"-I%s"'%os.path.abspath(self.GetCTRoot().GetIECLibPath()) - return [(Gen_Cfile_path, str(self.CExtension.getCFLAGS() + matiec_flags))],str(self.CExtension.getLDFLAGS()),True
+ return [(Gen_Cfile_path, str(self.CExtension.getCFLAGS() + matiec_CFLAGS))],str(self.CExtension.getLDFLAGS()),True --- a/py_ext/PythonFileCTNMixin.py Fri Apr 22 19:49:10 2016 +0300
+++ b/py_ext/PythonFileCTNMixin.py Fri Apr 22 21:26:31 2016 +0300
@@ -258,10 +258,10 @@
pycfile.write(PyCFileContent)
- matiec_flags = '"-l -p -I%s"'%os.path.abspath(
+ matiec_CFLAGS = '"-I%s"'%os.path.abspath( self.GetCTRoot().GetIECLibPath())
- return ([(Gen_PyCfile_path, matiec_flags)],
+ return ([(Gen_PyCfile_path, matiec_CFLAGS)], ("runtime_%s.py"%location_str, file(runtimefile_path,"rb")))