source: git/doc/HACKING.htm @ 6e0aa5f

RELEASE/1.1RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-datawalls-data-hanging-as-warning
Last change on this file since 6e0aa5f was 6e420ba, checked in by Olly Betts <olly@…>, 21 years ago

More removal of DOS and RISC OS support.

git-svn-id: file:///home/survex-svn/survex/branches/survex-1_1@2383 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 2.6 KB
Line 
1<HTML><HEAD>
2<TITLE>Survex Hacker's Guide</TITLE>
3<STYLE type="text/css"><!--
4BODY, TD, CENTER, UL, OL {font-family: sans-serif;}
5-->
6</STYLE>
7</HEAD><BODY BGCOLOR=white TEXT=black>
8<H1>Hacking Survex</H1>
9
10<p>(That's hacking in the "tinkering with code" sense, not in the
11"breaking into other people's computer systems" sense).
12
13<p>This is currently a random collection of notes that need to be written
14down while I remember.  With time it should evolve into a more
15coherent document.  If you have any questions which this should answer
16but doesn't then ask me and I'll add them.
17
18<H2>Network code debugging</H2>
19
20<P>You can pick which network simplifications are attempted using "-z"
21with an argument listing code letters.  So:
22
23<ul>
24<li>-z=    no special simplifications (articulation still performed)
25<li>-z=l   remove "lollipops"
26<li>-z=p   remove parallel legs
27<li>-z=d   convert deltas to stars
28</ul>
29
30<P>And you can combine these in any combination:
31
32<ul>
33<li>-z=lp  remove "lollipops" and parallel legs
34<li>-z=lpd remove "lollipops" and parallel legs; convert deltas to stars
35</ul>
36
37<P>"-z=lpd" is the default (in 0.99 at least - more transformations may
38conceivably be added in future, although the simple common cases are
39already covered).
40
41<H2>Developing on Unix Platforms</H2>
42
43<P>You'll need automake 1.5 or later (earlier versions don't support
44per-executable CFLAGS; 1.6 has been tested and works, but wasn't a
45very stable release - automake 1.6.1 is a better bet)
46and autoconf 2.50 or later (autoconf 2.52 and 2.53 have
47both been used successfully).
48
49<P>For building the documentation you'll need sgmltools 2 or later,
50docbook-to-man, and w3m.
51
52<H2>Building on Non-Unix Platforms</H2>
53
54<H3>Mingw (Microsoft Windows)</H3>
55
56<P>Currently I build this with a Linux hosted cross-compiler.  I use
57the packaged cross-compiler in the debian testing/unstable distribution.
58You can probably install these on other distributions using alien to
59convert them to RPMs or similar.  Alternatively, before that
60I used to use pre-built binaries for gcc 2.95.2 obtained from:
61
62<P><A HREF="http://www.libsdl.org/extras/win32/cross/"
63>http://www.libsdl.org/extras/win32/cross/</A>
64
65<P>Building on Windows in a native mingw environment will probably
66require tinkering.  Best bet is probably to install bash and use the
67current configure script.  I'm happy to help if you want to try this,
68and I'll incorporate patches provided they're fairly clean.
69
70<P>Building on Windows with MSVC/BorlandC/Watcom/... is likely to be more
71work, but could be a worthwhile project.  I'd suggest patching the
72perl script miniam.pl to generate a suitable makefile.  Again, send
73patches if you get this to work.
74
75</BODY></HTML>
Note: See TracBrowser for help on using the repository browser.