removed try/except
This commit is contained in:
parent
553cbd87bd
commit
3ae5bf0ef1
1 changed files with 7 additions and 6 deletions
|
|
@ -7,9 +7,11 @@ except:
|
|||
libs = []
|
||||
platform = sys.platform
|
||||
|
||||
flibstr = '@FLIBS@'
|
||||
f1 = flibstr.replace('-l', ' ')
|
||||
flibs = f1.split()
|
||||
flibs = []
|
||||
if @build_with_f2c@ <> 1:
|
||||
flibstr = '@FLIBS@'
|
||||
f1 = flibstr.replace('-l', ' ')
|
||||
flibs = f1.split()
|
||||
|
||||
linkargs = '@LCXX_FLAGS@'
|
||||
|
||||
|
|
@ -20,7 +22,6 @@ incdirs=["../../build/include", "src", "../clib/src"]
|
|||
if numarray_incl <> '':
|
||||
incdirs.append(numarray_incl)
|
||||
|
||||
|
||||
bllibstr = "@BLAS_LAPACK_LIBS@"
|
||||
bllibs = bllibstr.replace('-l',' ')
|
||||
bllist = bllibs.split()
|
||||
|
|
@ -57,8 +58,8 @@ if platform == "win32":
|
|||
"cantera"] + bllist + cvlist + ["ctbase", "ctmath", "tpx"]
|
||||
else:
|
||||
libs = ["clib"] + locallibs
|
||||
if flibs:
|
||||
libs = libs
|
||||
#if flibs:
|
||||
# libs = libs
|
||||
#libs = ["clib", "zeroD","oneD", "kinetics", "transport",
|
||||
# "equil", "ctnumerics", "converters"] + thermolib + bllist + cvlist + ["ctbase", "ctmath", "tpx", "boost_thread-mt-1_34"]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue