From 8f503fb985852ae7f9ad627e55bcac17c2a1272a Mon Sep 17 00:00:00 2001 From: Pearu Peterson Date: Fri, 18 May 2007 21:33:07 +0000 Subject: Add descriptions to config_fc and config_cc commands. --- numpy/distutils/command/config_compiler.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'numpy/distutils/command') 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"), ] -- cgit v1.2.1