Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Artifact ID: | ed43e8d0112b9c0e50d533f49cbaa1e1c3a9475f |
---|---|
Page Name: | Release Build How-To |
Date: | 2013-10-28 13:36:25 |
Original User: | anonymous |
Parent: | 29e902ac490c42168d691ca2ec4ddf3e0d6c9a59 (diff) |
Next | c434509060c720385388d7a028d05c80081fd69a |
Content
Notes on how the precompiled binaries were constructed
Linux
- On the www.fossil-scm.org server in the /home/www/fossil/b2 directory
- fossil clean -f
- ./configure --static
- Edit Makefile. Change "-O2" to "-Os -m32"
- make
- strip fossil
OpenBSD
- On the devio.us machine in the ~/fossil/m1 directory
- fossil clean -f
- ./configure
- make
- strip fossil
Windows
- 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.
- On the Samsung i9 (Windows8) in a MinGW shell in ~/fossil/m1
- fossil clean -f
- make -f win/makefile.mingw
- OR: Get Joe Mistachkin to build on mingw with OpenSSL support.
Mac
- On the machine "imac" (MacOS 10.6.8, x64) in the ~/fossil/m1 directory
- fossil clean -f
- ./configure
- Edit Makefile. Change "-O2" to "-Os -m32"
- make
- strip fossil
Source Tarball
- mkdir fossil-src-$VERSION
- cd fossil-src-$VERSION
- fossil open $REPO
- rm .fslckout
- cd ..
- tar czf fossil-src-$VERSION.tar.gz fossil-src-$VERSION