Skip to content

Commit

Permalink
BF: do not link smlr.so against libm on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Jul 26, 2013
1 parent 31563e8 commit dd5060a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
'mvpa2.clfs.libsmlrc.smlrc',
sources=[ 'mvpa2/clfs/libsmlrc/smlr.c' ],
#library_dirs = library_dirs,
libraries=['m'],
libraries=['m'] if not sys.platform.startswith('win') else [],
# extra_compile_args = ['-O0'],
extra_link_args=extra_link_args,
language='c')
Expand Down

0 comments on commit dd5060a

Please sign in to comment.