Skip to content

Commit

Permalink
Merge pull request #1 from michaelbynum/mcpp-builder
Browse files Browse the repository at this point in the history
Adding additional extensions when searching for libraries
  • Loading branch information
jsiirola authored Apr 19, 2019
2 parents 87cc43e + 8ace993 commit 262d751
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyomo/common/fileutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,9 @@ def find_dir(dirname, cwd=True, mode=os.R_OK, pathlist=[],

_libExt = {
'linux': ('.so', '.so.*'),
'windows': ('.dll',),
'windows': ('.dll', '.pyd'),
'cygwin': ('.dll', '.so', '.so.*'),
'darwin': ('.dylib',),
'darwin': ('.dylib', '.so', '.so.*'),
}

def _system():
Expand Down

0 comments on commit 262d751

Please sign in to comment.