Project

General

Profile

LegacyDevelopersWin32Environment » History » Version 10

Robert Terzi, 12/01/2013 12:43 PM

1 1 Dan Smith
h1. Setting up a Win32 Development Environment
2
3 9 Robert Terzi
{{toc}}
4
5 1 Dan Smith
h2. Library and Runtime Prerequisites
6
7
Get and install the following in this order:
8
9 7 Jens Jensen
 # "Python 2.7.x":http://python.org/download/releases/2.7.6/
10 1 Dan Smith
 # "PyGTK Win32 All-in-one installer":http://ftp.gnome.org/pub/GNOME/binaries/win32/pygtk/2.24/
11
 # "PyLibXML2":http://users.skynet.be/sbi/libxml-python/
12
 # "PyWin32":http://sourceforge.net/projects/pywin32/files/pywin32/
13
 # "PySerial":http://sourceforge.net/projects/pyserial/files/pyserial/2.5/
14
15 3 Dan Smith
Notes:
16 4 Dan Smith
17 3 Dan Smith
 * For any of the above, be sure to get the latest version, and the py27 variant if/when available.
18
 * If you are on 64-bit Windows, be sure to either download the 32 or 64-bit variants of each of the above. They must all match bitness in order to work together.
19 10 Robert Terzi
 * On Windows 7 (and possibly other newer versions of Windows with UAC) the PyLibXML2 installer will generate an error during the installation about not being able to modify the runtime directory.
20 3 Dan Smith
21 5 Dan Smith
When everything is installed, you will want to make sure that Python is in your system PATH variable:
22
23
h3. Windows XP
24
25
 * On the Desktop or in the Start menu, right-click on *My Computer* and choose *Properties*
26
 * In the dialog that opens, on the *Advanced* tab, click on *Environment Variables*
27
 * Under *System variables*, find *Path*, select it, and then edit *Edit*
28 8 Jens Jensen
 * At the end of the existing value, add exactly this string: @;C:\Python27@ (obviously adjust this path if you installed it elsewhere. Don't forget the leading semicolon)
29 5 Dan Smith
 * Click the *OK* buttons until you're done.
30
31
h3. Windows Vista/7
32
33
 * In the Windows menu, right-click on the *Computer* item and choose *Properties*
34
 * Click on *Advanced System Settings* on the left
35
 * In the dialog that opens, click on *Environment Variables*
36
 * Under *System variables*, find *Path*, select it, and then edit *Edit*
37
 * At the end of the existing value, add exactly this string: @;C:\Python27\bin@ (obviously adjust this path if you installed it elsewhere. Don't forget the leading semicolon)
38
 * Click the *OK* buttons until you're done.
39
40 1 Dan Smith
h2. CHIRP Development Process
41
42
Get and install the mercurial source code management tool:
43
44
 * "Mercurial SCM":http://mercurial.selenic.com/downloads/
45
46
47
h2. Clone the repository
48
49 2 Dan Smith
The next step is to download a copy of the repository. This is done from the command-line, and will create a @chirp.hg/@ directory in your current directory. Thus, you should change to the place you want it to be first. For example:
50 1 Dan Smith
51 2 Dan Smith
<pre>
52
C:\Users\Foo> cd \MyWorkspace
53
C:\MyWorkspace> hg clone http://d-rats.com/hg/chirp.hg
54
</pre>
55 1 Dan Smith
56
h2. Run chirp
57
58 2 Dan Smith
Python should be in your search path from the install, but if not, put it in the system PATH environment variable. Once you do that, you should be able to enter the directory that was created in the clone step above, and run chirpw with python:
59 1 Dan Smith
60 2 Dan Smith
<pre>
61
C:\MyWorkspace> cd chirp.hg
62
C:\MyWorkspace\chirp.hg> python chirpw
63
</pre>
64 9 Robert Terzi
65
h2. Setting up a Win32 Build Environment to create chirp .exe files
66
67
The following notes are for setting up a chirp build environment on a Win32 system, that can be used to create chirp .exe files and the installer for running on other Win32 systems without requiring a Python environment. Note: it is probably best to use the 32 bit versions of all of the components if your intent is to build an .exe that will work on the widest range of Windows systems.
68
69
# Follow the directions above to create a working chirp development environment
70
# Install py2exe - This utility creates .exe files from python environments.  See http://www.py2exe.org/
71
# Install cygwin - Cygwin provides a Unix/Linux like environment on a Windows system using the freely available GNU tools. See http://www.cygwin.com/
72
## During the cygwin installation, make sure zip and unzip are installed (from the Archive group) to provide the command line tools that can be used to manipulate ZIP files.
73
# install NSIS - The free Nullsoft Scriptable Install System is used to create Windows installer packages.  These are the .exe's that most users will download to install chirp on a Windows system.  See http://nsis.sourceforge.net/
74
75
h2. Creating Win32 .exe files
76
77
Follow the above instructions to setup a chirp build environment on a Windows system.
78
79
# Launch Cygwin Terminal to get a command prompt.
80
# cd to the chirp.hg directory where your sources are.
81
# run ./build/make_Win32_build.sh 
82
# The output in winds up in c:\cygwin (To Be Verified)