diff options
| author | Matti Picus <matti.picus@gmail.com> | 2021-08-13 14:05:40 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-13 14:05:40 +0300 |
| commit | 20807c7436629abcd3d9cbbe3d10b8eae8321ddb (patch) | |
| tree | a3358869a6d26ecd31ccec5372988aff69c439ab /numpy/distutils | |
| parent | 42c2cbe714e9e3709018cfa46fd9f71516d1e895 (diff) | |
| parent | fbd8f9a2c48fceddb10de225dc49e3d7c17c678d (diff) | |
| download | numpy-20807c7436629abcd3d9cbbe3d10b8eae8321ddb.tar.gz | |
Merge pull request #19582 from carljohnsen/libflame-extra-args
BLD: loaded extra flags when checking for libflame
Diffstat (limited to 'numpy/distutils')
| -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) |
