diff options
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 8ec4eb0bf..3c453788a 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -282,6 +282,11 @@ def configuration(parent_package='',top_path=None): config_cmd = config.get_config_cmd() log.info('Generating %s',target) + # Check that the toolchain works, to fail early if it doesn't + # (avoid late errors with MATHLIB which are confusing if the + # compiler does not work). + config_cmd.try_link('int main(void) { return 0;}') + # Check sizeof moredefs, ignored = cocache.check_types(config_cmd, ext, build_dir) |