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
|
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
|
+
-
+
+
+
+
+
+
+
+
+
+
-
+
+
+
-
+
-
+
|
<h1>Notes on how build and upload the precompiled binaries</h1>
<h1>Notes on how the precompiled binaries were constructed</h1>
<h2>Download Page</h2>
<ul>
<li>Run "fossil uv edit download.html" to modify the "releases" variable
in the javascript to add the new release number and title and various
hyperlinks.
<li>Run "fossil uv sync" to propagate the changes from the previous step.
</ul>
<h2>Linux</h2>
<ul>
<li>On the machine named "bella", cd to ~/fossil/static</li>
<li>rm -rf *</li>
<li>../m1/configure --static --disable-fusefs</li>
<li>make</li>
<li>strip fossil</li>
<li>tar czf fossil-linux-x64-$VERSION.tar.gz fossil
</ul>
<h2>OpenBSD</h2>
<ul>
<li>On the devio.us machine in the ~/fossil/m1 directory</li>
<li>fossil clean -x</li>
<li>./configure</li>
<li>make</li>
<li>strip fossil</li>
<li>tar czf fossil-openbsd-x86-$VERSION.tar.gz fossil
</ul>
<h2>Windows</h2>
<ul>
<li>Use MinGW instead of MSVC for windows builds since the resulting binary has
fewer kernel.dll dependencies and works with older versions of windows such as
XP.</li>
<li>On the Samsung i9 (Windows8) in a MinGW shell in ~/fossil/m1</li>
<li>On the Lenovo Yoga (Windows10) in a MinGW shell in ~/fossil/m1</li>
<li>fossil clean -x</li>
<li>make -f win/makefile.mingw FOSSIL_ENABLE_SSL=1
OPENSSLDIR=../../openssl-1.0.0l</li>
<li><b>OR:</b> tclsh ../mkfossil.tcl
<li>zip fossil-w32-$VERSION.zip fossil
</ul>
<h2>Mac</h2>
<ul>
<li>On the machine "imac" (MacOS 10.6.8, x64) in the ~/fossil/m1 directory</li>
<li>On 2015 MacPro in the ~/fossil/m1 directory</li>
<li>fossil clean -f</li>
<li>./configure</li>
<li>Edit Makefile. Change "-O2" to "-Os -m32"</li>
<li>make</li>
<li>strip fossil</li>
<li>tar czf fossil-macosx-$VERSION.tar.gz fossil
</ul>
<h2>Source Tarball</h2>
<ul>
<li>fossil tarball --name fossil-$VERSION version-$VERSION
fossil-src-$VERSION.tar.gz<br>
</li>
|