diff options
author | Ian Henriksen <insertinterestingnamehere@gmail.com> | 2015-07-07 20:47:51 -0600 |
---|---|---|
committer | Ian Henriksen <insertinterestingnamehere@gmail.com> | 2015-07-13 14:04:37 -0600 |
commit | a8e9a05b52c5b13c1a5a6709e1e2bf7522cd1654 (patch) | |
tree | 52ec838857cae80445d164daa7d601e5c374148d /numpy/lib/tests/test_regression.py | |
parent | b1a7d4c1d0e18913081ba2c1f8508da57582727e (diff) | |
download | numpy-a8e9a05b52c5b13c1a5a6709e1e2bf7522cd1654.tar.gz |
BUG: Allow libraries to be used as dependencies for other libraries when
compiling with numpy.distutils. For example, something like this will now
work as a configuration function:
def configuration():
config = Configuration()
config.add_library('mylib1', sources=['mylib1.f'])
config.add_library('mylib2', sources=['mylib2.f'], libraries=['mylib1'])
config.add_extension('pymodule', sources=['pymodule.c'],
libraries=['mylib2'])
return config
Arbitrary handling of dependencies between libraries is still not
supported, but this should make some basic cases work properly.
Diffstat (limited to 'numpy/lib/tests/test_regression.py')
0 files changed, 0 insertions, 0 deletions