diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-09-23 13:27:54 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-09-23 13:27:54 +0000 |
commit | 1b388dd8ecdec77365a3128e5cf061cd91d27a2c (patch) | |
tree | 22603f92e79b19d54eae3deba43e6953520df135 /numpy/distutils/command/build_ext.py | |
parent | 0ae9b49fe8c81525d717f140bc135857d3185349 (diff) | |
download | numpy-1b388dd8ecdec77365a3128e5cf061cd91d27a2c.tar.gz |
fixing link error: added debug message, 3.
Diffstat (limited to 'numpy/distutils/command/build_ext.py')
-rw-r--r-- | numpy/distutils/command/build_ext.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py index 9277f9393..5825a94f3 100644 --- a/numpy/distutils/command/build_ext.py +++ b/numpy/distutils/command/build_ext.py @@ -390,6 +390,8 @@ class build_ext (old_build_ext): else: kws = {} + log.debug('DEBUG: linker=%s,library_dirs=%s,ext.runtime_library_dirs=%s' % (linker, library_dirs, ext.runtime_library_dirs)) + linker(objects, ext_filename, libraries=libraries, library_dirs=library_dirs, |