Project

General

Profile

Install FindEM from source » History » Version 2

Amber Herold, 04/28/2011 09:19 AM

1 1 Amber Herold
h1. Install FindEM from source
2
3
If the binary included with Appion does not work, or you wish to compile it yourself follow these instructions.
4
5
* Goto myami/appion/findem folder to make findem.exe
6
7
* Compile the libraries and binary
8
9
<pre>
10
$ make
11
</pre>
12
13
* Test findem.exe to see if it runs
14
15
<pre>
16
$ make test
17
</pre>
18
19
*WARNING*
20
Only if the first part fails, you must add the path to libg2c.so library file.
21
Otherwise skip to next section.
22
23
* locate libg2c.so library file
24
25
<pre>
26
$ ls /usr/lib/gcc/`uname -i`-redhat-linux/3.4.6/libg2c.so
27
</pre>
28
29
<pre>
30
$ locate libg2c.so
31
</pre>
32
33
* Edit Makefile with location of libg2c.so
34
35
<pre>
36
EXLIBS=-L/usr/lib/gcc/i386-redhat-linux/3.4.6/ -lg2c
37
</pre>
38
39
* Re-compile
40
41
______
42
43 2 Amber Herold
[[Compile_FindEM|Install FindEM ^]]
44 1 Amber Herold
45
______