diff options
| author | mattip <matti.picus@gmail.com> | 2019-09-15 10:20:38 +0300 |
|---|---|---|
| committer | mattip <matti.picus@gmail.com> | 2019-09-20 09:34:47 +0300 |
| commit | 9852340606cf5f0e23cca8107e2bce61f022bc4e (patch) | |
| tree | 54b2a6311c1659ebc60b69147186f0fbf657d10c /numpy/distutils/__init__.py | |
| parent | 3096f1ab91b97214c5b0b91d0bd21b56206fc372 (diff) | |
| download | numpy-9852340606cf5f0e23cca8107e2bce61f022bc4e.tar.gz | |
BUILD: add --debug-configure option to reduce output, use logger more
Diffstat (limited to 'numpy/distutils/__init__.py')
| -rw-r--r-- | numpy/distutils/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/__init__.py b/numpy/distutils/__init__.py index 55514750e..a6f804bdc 100644 --- a/numpy/distutils/__init__.py +++ b/numpy/distutils/__init__.py @@ -28,7 +28,7 @@ def customized_fcompiler(plat=None, compiler=None): c.customize() return c -def customized_ccompiler(plat=None, compiler=None): - c = ccompiler.new_compiler(plat=plat, compiler=compiler) +def customized_ccompiler(plat=None, compiler=None, verbose=1): + c = ccompiler.new_compiler(plat=plat, compiler=compiler, verbose=verbose) c.customize('') return c |
