diff options
author | Carl Johnsen <cjjohnsen@nbi.ku.dk> | 2021-07-29 09:18:12 +0200 |
---|---|---|
committer | Carl Johnsen <cjjohnsen@nbi.ku.dk> | 2021-07-29 09:18:12 +0200 |
commit | fbd8f9a2c48fceddb10de225dc49e3d7c17c678d (patch) | |
tree | f67e61d041cc9cc04f52da395314f868eda05996 /numpy/distutils/system_info.py | |
parent | 2c1a34daa024398cdf9c6e1fbeff52b4eb280551 (diff) | |
download | numpy-fbd8f9a2c48fceddb10de225dc49e3d7c17c678d.tar.gz |
BLD: loaded extra flags when checking for libflame
Diffstat (limited to 'numpy/distutils/system_info.py')
-rw-r--r-- | numpy/distutils/system_info.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index 2846d754e..8467e1c19 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -2424,6 +2424,10 @@ class flame_info(system_info): if info is None: return + # Add the extra flag args to info + extra_info = self.calc_extra_info() + dict_append(info, **extra_info) + if self.check_embedded_lapack(info): # check if the user has supplied all information required self.set_info(**info) |