summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/config_compiler.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2007-05-18 21:33:07 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2007-05-18 21:33:07 +0000
commit8f503fb985852ae7f9ad627e55bcac17c2a1272a (patch)
tree44ac2618352c9483e70075622852e6ebf08c4bf6 /numpy/distutils/command/config_compiler.py
parent2fe22c45401c72e6727f0e0e40bab635bb5ca1dd (diff)
downloadnumpy-8f503fb985852ae7f9ad627e55bcac17c2a1272a.tar.gz
Add descriptions to config_fc and config_cc commands.
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"),
]