Commits
Michael Dickens authored 891c8d34daa
1 1 | --- numpy/linalg/setup.py.orig |
2 2 | +++ numpy/linalg/setup.py |
3 - | |
3 + | |
4 4 | sources=['lapack_litemodule.c', get_lapack_lite_sources], |
5 5 | depends=['lapack_lite/f2c.h'], |
6 6 | extra_info=lapack_info, |
7 7 | + extra_link_args=['-Wl,-undefined,dynamic_lookup', '-bundle'] |
8 8 | ) |
9 9 | |
10 10 | # umath_linalg module |
11 - | |
11 + | |
12 12 | depends=['lapack_lite/f2c.h'], |
13 13 | extra_info=lapack_info, |
14 14 | libraries=['npymath'], |
15 15 | + extra_link_args=['-Wl,-undefined,dynamic_lookup', '-bundle'] |
16 16 | ) |
17 17 | return config |
18 18 |