Project

General

Profile

LegacyDevelopersWin32Environment » History » Version 9

Robert Terzi, 12/01/2013 10:23 AM

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
20 5 Dan Smith
When everything is installed, you will want to make sure that Python is in your system PATH variable:
21
22
h3. Windows XP
23
24
 * On the Desktop or in the Start menu, right-click on *My Computer* and choose *Properties*
25
 * In the dialog that opens, on the *Advanced* tab, click on *Environment Variables*
26
 * Under *System variables*, find *Path*, select it, and then edit *Edit*
27 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)
28 5 Dan Smith
 * Click the *OK* buttons until you're done.
29
30
h3. Windows Vista/7
31
32
 * In the Windows menu, right-click on the *Computer* item and choose *Properties*
33
 * Click on *Advanced System Settings* on the left
34
 * In the dialog that opens, click on *Environment Variables*
35
 * Under *System variables*, find *Path*, select it, and then edit *Edit*
36
 * 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)
37
 * Click the *OK* buttons until you're done.
38
39 1 Dan Smith
h2. CHIRP Development Process
40
41
Get and install the mercurial source code management tool:
42
43
 * "Mercurial SCM":http://mercurial.selenic.com/downloads/
44
45
46
h2. Clone the repository
47
48 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:
49 1 Dan Smith
50 2 Dan Smith
<pre>
51
C:\Users\Foo> cd \MyWorkspace
52
C:\MyWorkspace> hg clone http://d-rats.com/hg/chirp.hg
53
</pre>
54 1 Dan Smith
55
h2. Run chirp
56
57 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:
58 1 Dan Smith
59 2 Dan Smith
<pre>
60
C:\MyWorkspace> cd chirp.hg
61
C:\MyWorkspace\chirp.hg> python chirpw
62
</pre>
63 9 Robert Terzi
64
h2. Setting up a Win32 Build Environment to create chirp .exe files
65
66
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.
67
68
# Follow the directions above to create a working chirp development environment
69
# Install py2exe - This utility creates .exe files from python environments.  See http://www.py2exe.org/
70
# Install cygwin - Cygwin provides a Unix/Linux like environment on a Windows system using the freely available GNU tools. See http://www.cygwin.com/
71
## 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.
72
# 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/
73
74
h2. Creating Win32 .exe files
75
76
Follow the above instructions to setup a chirp build environment on a Windows system.
77
78
# Launch Cygwin Terminal to get a command prompt.
79
# cd to the chirp.hg directory where your sources are.
80
# run ./build/make_Win32_build.sh 
81
# The output in winds up in c:\cygwin (To Be Verified)