diff options
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 27c06ecbf..4ca6672e6 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -151,10 +151,16 @@ def configuration(parent_package='',top_path=None): join('src','_isnan.c'), join('src','ucsnarrow.c'), join('include','numpy','*object.h'), + join('include','fenv.c'), + join('include','fenv.h'), join(codegen_dir,'genapi.py'), join(codegen_dir,'*.txt') ] + # Don't install fenv unless we need them. + if sys.platform == 'cygwin': + config.add_data_files(join('include','fenv.*')) + config.add_extension('multiarray', sources = [join('src','multiarraymodule.c'), generate_config_h, |