Fixed list of libraries specified when linking the Matlab extension
This commit is contained in:
parent
31ffb5e400
commit
88a1f64466
1 changed files with 2 additions and 2 deletions
|
|
@ -32,9 +32,9 @@ if localenv['python_package'] == 'full':
|
|||
cantera_libname = 'cantera_shared' if os.name=='nt' else 'cantera'
|
||||
#pylinklibs = [cantera_libname, 'cvode', 'ctmath', 'ctlapack', 'ctblas', 'ctf2c', 'execstream']
|
||||
if os.name == 'nt':
|
||||
pylinklibs = env['cantera_shared_libs']
|
||||
pylinklibs = list(env['cantera_shared_libs'])
|
||||
else:
|
||||
pylinklibs = env['cantera_libs']
|
||||
pylinklibs = list(env['cantera_libs'])
|
||||
|
||||
if localenv['toolchain'] == 'mingw':
|
||||
# On Windows, we need to link against the Python "import" library.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue