On Sun, Apr 21, 2013 at 7:48 PM, James Jong <[email protected]> wrote: > Thanks a lot Ilan, > > That's great to know. Do you know if there is any way to verify this? > Perhaps seeing which specific files with their extensions are actually Numpy > loads and uses?
numpy.show_config() will give you the configuration set up at build time You can't see static libraries being loaded as once linked, the static library is out of the picture. Generally, to check which libraries are linked (dynamically), you use ldd on unix, otool -L on mac and dumpbin or dependency walker on windows. David _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
