Changes between Initial Version and Version 1 of GettingF2cl


Ignore:
Timestamp:
05/08/12 05:32:14 (13 years ago)
Author:
rtoy
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified GettingF2cl

    v1 v1  
     1= Getting F2CL =
     2
     3
     4=== Via Quicklisp ===
     5The easiest way to get F2CL is to use
     6[http://www.Quicklisp.org Quicklisp].  You can just say
     7
     8{{{
     9(ql:quickload :f2cl)
     10}}}
     11
     12to get f2cl.
     13
     14=== Via Mercurial (hg) ===
     15
     16The second easiest way to get F2CL is to clone the hg (Mercurial)
     17repository:
     18
     19
     20{{{
     21  hg clone http://common-lisp.net/project/f2cl/hg/f2cl
     22}}}
     23
     24For developers with ssh access, you can use
     25
     26{{{
     27  hg clone ssh://user@common-lisp.net//project/f2cl/public_html/hg/f2cl
     28}}}
     29
     30Substitute your user name for "user", of course.  Also, note the two
     31slashes before project.  These are important.
     32
     33Note that when f2cl converts a Fortran file to Lisp, it includes
     34information about the version of f2cl used to do the conversion.  For
     35this to work you will need to set up Mercurial to use the keyword
     36extension.  Add the following to your {{{.hgrc}}} file:
     37
     38{{{
     39[extensions]
     40# Enable the Mercurial keyword extension for RCS keywords.
     41keyword =
     42
     43# Filename patterns for CVS keyword expansion are configured in this
     44# section
     45[keyword]
     46# Expand keywords in all .l files.  Basically for f2cl sources.
     47src/*.l =
     48}}}
     49
     50Now when you clone f2cl, you should something like this in
     51{{{src/f2cl1.l}}}:
     52
     53{{{
     54(defparameter *f2cl1-version*
     55  "$Id: f2cl1.l,v f0f149e72999 2010/10/08 03:05:30 rtoy $")
     56}}}