develop #2

Sammanfogat
eyck sammanfogade 5 incheckningar från develop in i master 2021-03-14 12:16:48 +01:00
2 ändrade filer med 2 tillägg och 2 borttagningar
Showing only changes of commit bf1801500e - Show all commits

Visa fil

@ -6,7 +6,7 @@
#include "PyScModule.h"
#define PY_SSIZE_T_CLEAN
#include <python3.6/Python.h>
#include <Python.h>
class TPyScriptThreadLocker {
PyGILState_STATE m_state;

Visa fil

@ -18,7 +18,7 @@ pysyscsc = Extension('pysyscsc',
extra_compile_args = ['-std=c++11'],
include_dirs = [sysc_home+'/include'],
libraries = ['systemc'],
library_dirs = [sysc_home+'/lib'],
library_dirs = [sysc_home+'/lib64', sysc_home+'/lib'],
sources = ['PyScModule.cpp'],
depends = ['PyScModule.h'])