Skip to content

Commit

Permalink
re-add old WIN64 dll because 64bit python interpreters need it to work
Browse files Browse the repository at this point in the history
  • Loading branch information
gfacciol committed Jul 26, 2016
1 parent 6669fb9 commit 17ec8f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Binary file added piio/WIN64/iio.dll
Binary file not shown.
5 changes: 4 additions & 1 deletion piio/piio.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@

if sys.platform.startswith('win'): #precompiled windows
lib_ext = '.dll'
lib_basename = 'WIN32/iio'
if platform.architecture()[0] == '64bit': #precompiled windows
lib_basename = 'WIN64/iio'
else:
lib_basename = 'WIN32/iio'
elif sys.platform.startswith('darwin'): # precompiled osx intel 64 bits
lib_basename = 'MAC64/libiio'
lib_ext = '.so'
Expand Down

0 comments on commit 17ec8f1

Please sign in to comment.