Skip to content

Commit

Permalink
Including MacOS (darwin) binaries
Browse files Browse the repository at this point in the history
Former-commit-id: fec262d [formerly 8398425]
Former-commit-id: c1867d7
  • Loading branch information
tuliotoffolo committed Jul 3, 2019
1 parent eea13fb commit 73a7a91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mip/cbc.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
libfile = os.path.join(pathlib, 'cbc-c-windows-x86-64.dll')
else:
libfile = os.path.join(pathlib, 'cbc-c-windows-x86-32.dll')
elif platform.lower().startswith('darwin'):
elif platform.lower().startswith('darwin') or platform.lower().startswith('macos'):
if os_is_64_bit:
libfile = os.path.join(pathlib, 'cbc-c-darwin-x86-64.a')
libfile = os.path.join(pathlib, 'cbc-c-darwin-x86-64.dylib')
if not libfile:
raise Exception(
"You operating system/platform is not supported")
Expand Down
1 change: 1 addition & 0 deletions mip/libraries/cbc-c-darwin-x86-64.dylib.REMOVED.git-id
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
851e0c8c9801a8ad5027bd354a4390a6a7d8be5f
1 change: 0 additions & 1 deletion mip/libraries/cbc-c-macos-x86-64.dylb.REMOVED.git-id

This file was deleted.

0 comments on commit 73a7a91

Please sign in to comment.