develop #2

Merged
eyck merged 5 commits from develop into master 2021-03-14 12:16:48 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit bf1801500e - Show all commits

View File

@ -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;

View File

@ -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'])