This repository was archived by the owner on Sep 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCygwin_setup.html
More file actions
59 lines (55 loc) · 1.38 KB
/
Cygwin_setup.html
File metadata and controls
59 lines (55 loc) · 1.38 KB
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
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<title>Building synApps on Cygwin</title>
</head>
<h1 align="center">Building synApps on Cygwin</h1>
The following components from the Cygwin distribution package are required in order to build synApps
for the cygwin-x86 architecture:
<ul>
<li>base
<ul>
<li>All default components
</ul>
<li>devel
<ul>
<li>gcc-core
<li>gcc-g++
<li>libncurses-devel
<li>make
<li>readline
</ul>
<li>interpreters
<ul>
<li>perl
</ul>
<li>libs
<ul>
<li>ncurses
<li>sunrpc
</ul>
</ul>
To set up the PATH and EPICS_HOST_ARCH environment variables create a script file called
/usr/local/bin/setup_epics containing lines like the following:
<pre>
export PATH="/usr/bin:/usr/local/bin:/corvette/usr/local/epics/base/bin/cygwin-x86"
export EPICS_HOST_ARCH=cygwin-x86
</pre>
The last element in the PATH definition must be the path to the bin/cygwin-x86 subdirectory in your
local installation of EPICS base.
<p>
When logging in to the bash shell on cygwin type the command
<pre>
source setup_epics
</pre>
to execute that script.
<P>
<address>
Suggestions and Comments to: <br>
<a href="mailto:rivers@cars.uchicago.edu">Mark Rivers</a>:
(rivers@cars.uchicago.edu) <br>
Last modified: November 28, 2005
</address>
</body>
</html>