File: README.md

package info (click to toggle)
yorick 2.2.04%2Bdfsg1-10
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 9,968 kB
  • sloc: ansic: 86,752; sh: 1,697; cpp: 1,309; lisp: 1,234; makefile: 1,050; fortran: 19
file content (224 lines) | stat: -rw-r--r-- 9,260 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
Welcome
-------

Yorick is an interactive programming language for scientific computing
that includes scientific visualization functions, and text and binary
I/O functions geared to millions of numbers.

Yorick is open source software, under a
[BSD license](https://github.com/dhmunro/yorick/blob/master/LICENSE.md).
Yorick runs under UNIX, MacOS X (X windows), and MS Windows.  You can
find many yorick resources online:

* Home pages at [yorick.github.com][] and [yorick.sourceforge.net][],
  including the user manual and extensive documentation.
* User forums at [yorick.sourceforge.net][].
* Browse or download sourcecode at [github.com/dhmunro/yorick][].
* Read end of Quick start section below on running yorick demo programs.

[yorick.github.com]:         http://yorick.github.com
[yorick.sourceforge.net]:    http://yorick.sourceforge.net
[github.com/dhmunro/yorick]: http://github.com/dhmunro/yorick

Files in the regexp/ subdirectory are the work of Guido van Rossum and
Henry Spencer; read the files for details.  The latter is Copyright
(c) 1986 by University of Toronto.

Files in the fft directory are C translations of the Swarztrauber
fortran FFTPACK routines.  Files in the matrix directory are C
translations of the fortran LAPACK routines.  The original fortran is
available from [netlib.org](http://netlib.org/).


Quick start
-----------

On most UNIX-like systems (including Linux and MacOS X), you can build
yorick by changing to the top level directory of the source
distribution and typing:

    make install

This will create a subdirectory relocate/ in the source tree.  The
yorick executable is relocate/bin/yorick.  You can move the relocate/
directory wherever you want (the name "relocate" is unimportant), but
any changes in the relative locations of the files therein will
prevent yorick from starting correctly.  You can, of course, softlink
to the yorick executable from wherever you like, or exec yorick from a
shell script outside its relocate/ directory.  The relocate/ directory
is organized as follows:

    relocate/  files required for building compiled packages, and:
      bin/     binary executables
      lib/     binary libraries for compiled packages
      include/ header files for compiled package APIs
      i0/      interpreted code required for yorick to start
      i/       optional interpreted code libraries
      i-start/ interpreted code that autoloads at startup
      g/       graphics style files, palettes, and templates
      doc/     documentation files

To build a tarball containing a yorick executable, type instead:

    make relocatable

This creates a tarball yorick-V.N-RR.tgz containing the yorick code,
interpreted library, and documentation.  Move it to the directory
where you wish to install yorick, then unpack it with:

    gzip -dc yorick-V.N-RR.tgz | tar xvf -

The yorick executable will be yorick-V.N-RR/bin/yorick.  Read
yorick-V.N-RR/README for more information.

To build yorick on a MS Windows machine, read win/README.

Yorick is a command line program; you need to run it in a terminal
window.  You will want command line recall and editing.  If your
terminal window does not support that, you can either run yorick under
emacs (see the emacs/ directory in the source), or you can get a
readline wrapper like [rlwrap](http://freshmeat.net/projects/rlwrap/).

If you need some test programs to run, you can try the demos.  Start
yorick and type:

    include, "demo3.i"  
    demo3

The demo3 runs a simulation of a chaotic pendulum (it will stop after
about a minute).  Yorick functions generally have documentation which
you can read in the terminal using the help command:

    help, demo3

The help message includes the path to the source file, which you can
open and read with any text editor, to find out exactly how demo3
works (or any other yorick interpreted command).  There are five demo
programs (demo1 through demo5).  You can also do a comprehensive test
of your yorick installation by typing:

    include, "testfull.i"


Roadmap of yorick source
------------------------

The top-level distribution directory contains this README, scripts for
configuring and building yorick, and a number of subdirectories.  Some
subdirectories contain core parts of yorick; others are extras which
you might reasonably omit.  Here's a quick roadmap:

    play/     (portability layer)
      here are event loop, low level io, graphics primitives
      everything else is supposed to be strictly architecture-independent
        (however, other non-core packages may slightly violate this rule)
    win/      (MS Windows specific files)
      here are the MS Visual C++ project files
      some Windows code is in subdirectories like play/win
    gist/
      play-based 2D scientific visualization library
    yorick/
      yorick language interpreter (C source)
    matrix/
      LAPACK linear algebra functions (C source)
    math/
      non-matrix mathematical functions (C source)
    fft/
      Swartztrauber Fast Fourier Transform (C source)
    i/
      library of interpreted functions
    i0/
      interpreted code required at startup
    i-start/
      interpreted code run at startup, usually containing autoloads
    extend/
      sample trivial compiled extension for yorick
    mpy/
      MPI-based yorick multiprocessing package
    drat/
      compiled extension to do 2D cylindrical radiation transport
    hex/
      compiled extension to do 3D radiation transport
    doc/
      documentation: yorick user manual, quick reference cards
    emacs/
      GNU Emacs lisp code for running yorick and editing yorick source
  
    distribs/
      files for creating RedHat RPM, FreeBSD, and other distributions
    debian/
      instructions for creating Debian .deb distribution


Other build options
-------------------

You can take up to four steps to configure, build, test, and install
yorick.  In order, the four separate commands are:

    make config
    make
    make check
    make install

 Yorick requires an ANSI C compiler and libraries, some POSIX standard
 functions (plus either poll or select, which are not covered by any
 standard, but are present on all UNIX systems), and the basic X11
 library (R4 might work, but anything R5 or better should certainly
 work).  However, these components may be misinstalled or installed in
 places where the configuration process cannot find them.  If so, you
 can either fix your system or edit the files Make.cfg and
 play/unix/config.h by hand to repair any errors or oversights of "make
 config".
 
 The "make config" step creates the file Make.cfg (in this top-level
 directory).  By default, the compiler and loader flags are just "-O".
 If you want fancier options, you can edit Make.cfg before you build;
 just modify the Y_CFLAGS and/or Y_LDFLAGS variable.  Optimization flags
 like -g or -O are handled separately; use the COPT_DEFAULT variable
 to set those.
 
 Instead of editing Make.cfg by hand after the "make config" step, you
 can also set a variety of environment variables to control the
 configuration process.  You can read the configuration scripts --
 configure, play/unix/config.sh, play/x11/xconfig.sh, and
 yorick/yconfig.sh -- to find out precisely what they do.  Here they
 are, with sample non-default values:
 
    CC='xlc -q64'      # C compiler name plus overall mode switch
    CFLAGS=-g          # compile flags (-O is default)
    LDFLAGS=-g         # load flags (optimization CFLAGS is default)
    AR='ar -X 64'      # ar archive program
    RANLIB='ranlib -X 64'  # ranlib archive indexer
    MATHLIB=-lmcompat      # math library (-lm is default)
 
    FPU_IGNORE=yes  # give up trying to catch floating point exceptions
    NO_PLUGINS=yes  # build yorick with no plugin support
    LD_STATIC=yes   # force hex and drat packages to be statically loaded
    NO_PASSWD=yes   # hack for crippled OSes or crosscompilers (catamount)
    NO_CUSERID=yes  # hack for crippled OSes or crosscompilers (catamount)
    NO_PROCS=yes    # build yorick with no subprocess or poll/select support
                      (catamount) - this cripples yorick event handling
    NO_POLL=yes     # forces use of select when poll present but broken
                      (Mac OS X uses this by default)
 
    NO_XLIB=yes     # build yorick with no onscreen graphics
    X11BASE=/weird/X11root         # try -I/weird/X11root/include, and
                                         -L/weird/X11root/lib
    X11INC=/weird/X11root/include  # directory containing X11/Xlib.h
    X11LIB=/weird/X11root/lib      # directory containing libX11.a or .so

Other make targets include:

    clean      -- get rid of the mess left over from the build
       do this after successful install
    distclean  -- clean plus all files generated by the config step
       config does distclean before it begins
    siteclean  -- distclean plus resets ysite.sh to original settings
    uninstall  -- gets rid of all installed files
       be sure to do uninstall before distclean if you want to
       get rid of the yorick you installed (otherwise you will
       need to make ysite again)

There are many more build targets and make macros.  Read the comments
in Makefile and Makepkg for more information.