#7505: Add scripts which check C and C++ compilers, and report what they are
---------------------------+------------------------------------------------
   Reporter:  drkirkby     |       Owner:  tbd                                  
          
       Type:  enhancement  |      Status:  needs_review                         
          
   Priority:  major        |   Milestone:  sage-4.3.1                           
          
  Component:  build        |    Keywords:                                       
          
Work_issues:               |      Author:  David Kirkby, Peter Jeremy           
          
   Upstream:  N/A          |    Reviewer:  Martin Albrecht, William Stein, Minh 
Van Nguyen
     Merged:               |  
---------------------------+------------------------------------------------

Comment(by mvngu):

 There is a mismatch in documentation in `testcc.2.sh`:
 {{{
 54  # Exit if the user supplies any command-line arguments.
 55      if [ $# -ne 1 ] ; then
 56        usage
 57        exit 1
 58      fi
 59      CC_LOCAL=$1
 }}}
 Do you also want to change the above section to something like the
 following?
 {{{
 # Exit if the user does not supply one command line argument.
 if [ $# -ne 1 ] ; then
   usage
   exit 1
 fi

 CC_LOCAL=$1 # Compiler name or path as argument to script.
 }}}
 This would also be in line with the corresponding documentation in
 `testcxx.2.sh`.
 [[BR]][[BR]]

 PS: If you want to replace an earlier version of an attachment with the
 same name, you could do so. On the page for uploading files, there should
 be a check box to indicate that you want to replace files of the same
 name.

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/7505#comment:30>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

--

You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sage-trac?hl=en.


Reply via email to