summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/config_compiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/distutils/command/config_compiler.py')
-rw-r--r--numpy/distutils/command/config_compiler.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/numpy/distutils/command/config_compiler.py b/numpy/distutils/command/config_compiler.py
index 627f09d8b..58cd9e0c8 100644
--- a/numpy/distutils/command/config_compiler.py
+++ b/numpy/distutils/command/config_compiler.py
@@ -2,7 +2,6 @@ import sys
from distutils.core import Command
from numpy.distutils import log
-#XXX: Implement confic_cc for enhancing C/C++ compiler options.
#XXX: Linker flags
def show_fortran_compilers(_cache=[]):
@@ -22,6 +21,8 @@ class config_fc(Command):
config_fc command is used by the FCompiler.customize() method.
"""
+ description = "specify Fortran 77/Fortran 90 compiler information"
+
user_options = [
('fcompiler=',None,"specify Fortran compiler type"),
('f77exec=', None, "specify F77 compiler command"),
@@ -86,6 +87,8 @@ class config_cc(Command):
to C/C++ compilers.
"""
+ description = "specify C/C++ compiler information"
+
user_options = [
('compiler=',None,"specify C/C++ compiler type"),
]