blob: 89428fa0253107f91a984d33b123c006a122fc6d (
plain)
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
|
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Author" content="Johan Smet">
<meta name="GENERATOR" content="Mozilla/4.61 [en] (Win98; I) [Netscape]">
<title>Building glean under Windows</title>
</head>
<body>
<h1>
Building <i>glean</i> under Windows</h1>
Note : this document asumes that you are using Microsoft Visual C++ 6 (VC6).
<h2>
Other software you'll need</h2>
Currently<i> glean</i> doesn't build with the STL included with VC6. <i>glean</i>
has been verified to build with the <a href="http://www.stlport.org/">STLport</a>
implementation.
<br>
<h2>
Obtain the source code</h2>
Obtain the .zip file containing <i>glean</i> from
<a href="ftp://ftp.mesa3d.org/mesa/contrib/">ftp://ftp.mesa3d.org/mesa/contrib/</a>.
<p>Unzip the file:
<pre> pkunzip -d glean_1_0.zip c:\
cd glean_1_0</pre>
This will create a subdirectory named <tt>glean_1_0</tt> and make it your
current directory.
<h2>
Set the GLEAN_ROOT environment variable</h2>
To compile or run <i>glean</i>, you will need to set the environment variable
<tt>GLEAN_ROOT</tt> to the full pathname of the <i>glean</i> source directory.
Open a dos prompt and type
<pre> set GLEAN_ROOT=c:\glean_1_0</pre>
Be sure to set the environment variable each time you want to compile or
run <i>glean</i>.
<br>
<h2>
Set the VC6 environment variables</h2>
To use the command-line tools, you will have to set some environment variables.
There is a batch file in VC6's bin directory called <i>vcvars32.bat </i>that
contains the necessary commands. Just execute this in the same dos
prompt as the previous step and you'll be set to go.
<br>
<h2>
Set Makefile options</h2>
Edit GLEAN_ROOT\make\common.win and modify the configuration variables
according to your preferences. Some of the variables that are most likely
to need customization are:
<p>STL_DIR
<br> This variables specifies
the directory containing include files of the STLport.
<p>LIBTIFF_INC_DIR
<br>LIBTIFF_LIB_DIR
<br> These variables specify
the directories that contain the libtiff include files and library resp.
<br>
<h2>
Build <i>glean</i></h2>
When you've finished editing the Makefile, simply type
<pre> cd src
nmake /f makefile.win</pre>
This will build <i>glean</i> and the other tools in the suite, and install
them in <tt>$GLEAN_ROOT/bin</tt>.
<HR>
<SMALL>
<UL TYPE=DISC>
<LI> <A HREF="whatis.html">What is <I>glean</I>?</A>
<LI> <A HREF="build.html">How do I build <I>glean</I>?</A>
<LI> <A HREF="run.html">How do I run <I>glean</I>?</A>
<LI> <A HREF="next.html">Where do we go from here?</A>
<UL TYPE=CIRCLE>
<LI> <A HREF="newtest.html">Adding new tests</A>
<LI> <A HREF="newfeat.html">Adding new infrastructure features</A>
<LI> <A HREF="overview.html">Overview of <I>glean</I> internals</A>
<LI> <A HREF="repo.html">Creating a repository of results</A>
<LI> <A HREF="port.html">Porting <I>glean</I></A>
<LI> <A HREF="cleanup.html">Cleaning up loose ends</A>
</UL>
<LI> <A HREF="changes.html">What has changed recently?</A>
</UL>
</SMALL>
</BODY>
</HTML>
|