File: README.packagers

package info (click to toggle)
gretl 2022c-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 59,552 kB
  • sloc: ansic: 409,074; sh: 4,449; makefile: 3,222; cpp: 2,777; xml: 599; perl: 364
file content (82 lines) | stat: -rw-r--r-- 3,316 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
The information below is intended to help those who are packaging
gretl for Linux distributions. It describes certain options to the
configure script which may affect the usability and/or functionality
of a gretl build on various platforms, under the three headings
"CPU and openmp functionality", "MPI support" and "XDG tools".

1. CPU and openmp functionality

Gretl's configure script aims to produce a binary whose functionality
is as advanced as possible based on the characteristics of the build
host. Please note that this may not be what you want if you intend to
build gretl for a "lowest common denominator" target machine.

The specific configure options that are most relevant here are

--enable-sse2
--enable-avx
--enable-openmp

These are all marked as "auto", meaning that they will be probed
at configure time. If your build host has one or more of these
attributes but you do NOT want them built into the package you
are creating, you should give one or more of the following options
to configure

--disable-sse2
--disable-avx
--disable-openmp

(It should probably go without saying that a build with SSE2 or AVX
enabled will fail at start-up with "Illegal instruction" if a user
attempts to run it on a machine whose CPU does not support the
instruction set in question.)

2. MPI support

The first point above was in effect a warning: you may wish to avoid
enabling inadvertently a feature which could cause your gretl build 
to be inoperative on some users' machines. This second point is in a
sense "the other way round": you may wish to enable a feature that
could benefit some users but will not hurt others.

MPI support in gretl can be described as an "optional dependency".
In the configure process we scan for the MPI-specific compiler,
mpicc, which is supplied by MPI implementations such as Open MPI and
MPICH. If this is found, the additional program gretlmpi gets built.
If there's no MPI implementation on the end-user's machine then
the gretlmpi binary won't work (unless and until the user installs
such an implementation), but the rest of gretl's functionality is
unaffected. You can find details on this at

https://sourceforge.net/projects/gretl/files/manual/gretl-mpi.pdf

but we would recommend that packagers enable MPI support in gretl
by including an MPI implementation on the build host. That way,
users of your package can either get MPI support "out of the box"
(if they already have MPI installed) or can install an MPI package
later and thereby get MPI support on demand.

3. XDG tools

By default, gretl checks for the presence of the XDG tools
(xdg-desktop-menu, xdg-mime, xdg-icon-resource) and if they are
found, uses them to install gretl's XDG-related files. This supports
"make install" as executed by a regular user who may not have
permission to install under /usr, and also the case where a user
chooses to install gretl under (say) /opt: in that case files that
would not be found under /opt will be installed into the correct
location.

However, a packager who wants to ensure that _everything_ goes
into the location specified by DESTDIR will have to override
gretl's attempt at "cleverness". This can be done by adding

--disable-xdg-utils

when invoking gretl's configure script.

Allin Cottrell
Department of Economics
Wake Forest University
2017-06-07