File: INSTALL.md

package info (click to toggle)
creduce 2.10.0%2B20201029-3
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 4,992 kB
  • sloc: cpp: 24,914; ansic: 7,186; sh: 4,918; perl: 3,003; makefile: 598; lex: 441
file content (212 lines) | stat: -rw-r--r-- 6,398 bytes parent folder | download | duplicates (4)
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
# Installing C-Reduce

## Using a Package Manager

Before compiling C-Reduce yourself, you might want to see if your OS
comes with a precompiled package for C-Reduce.  Ubuntu, Debian, Gentoo,
FreeBSD and Mac OS X (Homebrew) all do.  For example, on OS X:

```
$ brew install creduce
```

## From Source

### Prereqs

C-Reduce is written in Perl, C++, and C.  To compile and run C-Reduce,
you will need a development environment that supports these languages.
C-Reduce's build system requires CMake or GNU Make (*not* BSD Make).

Beyond the basic compile/build tools, C-Reduce depends on a set of
third-party software packages, including LLVM.

On Ubuntu or Mint, the prerequisites other than LLVM can be installed
like this:

```
sudo apt-get install \
  libexporter-lite-perl libfile-which-perl libgetopt-tabular-perl \
  libregexp-common-perl flex build-essential zlib1g-dev
```

On OS X, [Perlbrew](http://perlbrew.pl/) provides an easy and flexible
way to get Perl and Perl modules installed

On FreeBSD 12.1, the prerequisites can be installed like this:

```
sudo pkg install \
  llvm90 flex p5-Exporter-Lite p5-File-Which p5-Getopt-Tabular p5-Regexp-Common
```

Otherwise, install these packages either manually or using the package
manager:

* [Flex](http://flex.sourceforge.net/)

* [LLVM/Clang 9.0.0](http://llvm.org/releases/download.html#9.0.0)
  (No need to compile it: the appropriate "pre-built binaries" package is
  all you need.  If you use one of the binary packages, you may need
  to install additional packages that the binary package depends on.
  For example, the "Ubuntu 18.04" binary package depends on "libtinfo5"
  and "libxml2".  You may need to install these, e.g.:
  `sudo apt-get install libtinfo-dev libxml2-dev`.)

* Perl modules:
  - Exporter::Lite
  - File::Which
  - Getopt::Tabular
  - Regexp::Common
  - For example, (perhaps as root) `cpan -i Exporter::Lite File::Which Getopt::Tabular Regexp::Common`

* [zlib](http://www.zlib.net/)

### Optional Prereqs

`Term::ReadKey` is optional; C-Reduce will use it if it is installed.

On Ubuntu:

```
sudo apt-get install libterm-readkey-perl
```

On OS X (with Homebrew + Perlbrew installed):

```
cpan -i Term::ReadKey
```

On FreeBSD 12.1:

```
sudo pkg install p5-Term-ReadKey
```

Otherwise, install the packages either manually or using the package
manager.

## Building and installing C-Reduce

You can configure, build, and install C-Reduce with the provided
`configure` script or with CMake.

### Preface: If in Doubt, Compile With clang++

If you encounter weird C++ link-time errors while trying to compile
C-Reduce (in particular, while compiling its internal `clang_delta`
tool), please try compiling with clang++.

We have encountered link-time problems while trying to compile
C-Reduce with GCC 5.* and the precompiled LLVM binaries available
from <http://llvm.org/releases/download.html>.  If you encounter
similar problems, we strongly suggest that you use Clang instead of
GCC to compile C-Reduce and its internal tools.

If you are curious, for some discussion of this issue, see:
<https://github.com/csmith-project/creduce/issues/101>
<https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_dual_abi.html>

### The `configure` Way

From either the source directory or a build directory:

```
[source-path/]configure [options]
make
make install
```

The `configure` script was generated by GNU Autoconf, and therefore
accepts the usual options for naming the installation directories,
choosing the compilers you want to use, and so on.  `configure --help`
summarizes the command-line options.

If LLVM/Clang is not in your search path, you can tell the `configure`
script where to find LLVM/Clang:

```
# Use the LLVM/Clang tree rooted at /opt/llvm
configure --with-llvm=/opt/llvm
```

If you choose to build LLVM and Clang yourself, *and* if you choose to
keep your LLVM and Clang build trees separate, you can tell the
`configure` script where to find your separate Clang tree:

```
# Use separate LLVM and Clang build trees, /work/my-{llvm,clang}
configure --with-llvm=/work/my-llvm --with-clang=/work/my-clang
```

You do *not* need to specify `--with-clang` if you build Clang within
your LLVM tree.  Also note that you must actually *build* LLVM and
Clang before building C-Reduce.

Note that assertions are enabled by default (which is probably what
you want).  To disable assertions:

```
configure --disable-trans-assert
```

The generated Makefiles require GNU Make.  BSD Make will not work.
If you see weird make-time errors, please check that you are using
GNU Make.

### The CMake Way

From either the source directory or a build directory:

```
cmake [source-dir] [options]
make
make install
```

If LLVM/Clang is not in your search path, you can tell CMake where to
find LLVM/Clang:

```
# Use the LLVM/Clang tree rooted at /opt/llvm
cmake [source-dir] -DCMAKE_PREFIX_PATH=/opt/llvm
```

Alternatively, if you choose to build LLVM and Clang yourself, you can
set the `LLVM_DIR` and/or `Clang_DIR` variables to paths where CMake can
find the `LLVMConfig.cmake` and/or `ClangConfig.cmake` files.  The
value of `LLVM_DIR` is usually `./lib/cmake/llvm`, relative to your LLVM
build or install directory.  Similarly, the value of `Clang_DIR` is
usually `./lib/cmake/clang`, relative to your Clang build or install
directory.  For example:

```
# Use separate LLVM and Clang build trees, /work/my-{llvm,clang}
cmake [source-dir] -DLLVM_DIR=/work/my-llvm/lib/cmake/llvm \
  -DClang_DIR=/work/my-clang/lib/cmake/clang
```

You do *not* need to set `Clang_DIR` if you build Clang within your LLVM
tree.  Also, note that you must actually *build* LLVM and Clang before
building C-Reduce.

Note that assertions are enabled by default. To disable assertions:

```
cmake ... -DENABLE_TRANS_ASSERT=OFF
```

## Regarding LLVM versions

Released versions of C-Reduce, and also our master branch at GitHub,
need to be compiled against specific released versions of LLVM, as
noted in this file.

Our GitHub repo usually also has a branch called llvm-svn-compatible
that supports building C-Reduce against LLVMs that are newer than the
last released version.  The most recent version of LLVM that the
llvm-svn-compatible branch is known to compile against is recorded in
`LAST_KNOWN_WORKING_LLVM`.  C-Reduce may happen to also build against
revisions before or after this, but we make no guarantees.