diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-09-23 12:57:12 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-09-23 12:57:12 +0000 |
commit | baa815693a1888b0d933d342fe17bcfba106001f (patch) | |
tree | 18e455c78a7a9f387b91773c2969fcb4aad3436d /numpy/distutils | |
parent | 02a822342f565f8401463a446afae3054f2820e7 (diff) | |
download | numpy-baa815693a1888b0d933d342fe17bcfba106001f.tar.gz |
fixing link error: added debug message
Diffstat (limited to 'numpy/distutils')
-rw-r--r-- | numpy/distutils/ccompiler.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py index 882a53570..9bd965895 100644 --- a/numpy/distutils/ccompiler.py +++ b/numpy/distutils/ccompiler.py @@ -381,6 +381,7 @@ def gen_lib_options(compiler, library_dirs, runtime_library_dirs, libraries): lib_opts.extend(list(i)) else: lib_opts.append(i) + print 'DEBUG:',lib_opts, library_dirs, runtime_library_dirs return lib_opts ccompiler.gen_lib_options = gen_lib_options |