From 214e3c8af745e227d0a65464b30e823ab9bee5ca Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Mon, 24 Feb 2014 03:27:25 +0000 Subject: [PATCH] [SCons] Fix library linking issues under Cygwin Partial cherry-pick of trunk r2738. --- src/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SConscript b/src/SConscript index 9fd72bb6b..a17351389 100644 --- a/src/SConscript +++ b/src/SConscript @@ -56,7 +56,7 @@ install('$inst_libdir', lib) env['cantera_staticlib'] = lib # Windows and OS X require shared libraries at link time -if localenv['OS'] in ('Darwin', 'Windows'): +if localenv['OS'] in ('Darwin', 'Windows', 'Cygwin'): localenv.Append(LIBS=localenv['FORTRANSYSLIBS']) if (localenv['use_sundials'] == 'y'): localenv.Append(LIBS=localenv['sundials_libs'],