annotate README.Watcom @ 1773:3776702e1fb9

(none)
author Sam Lantinga <slouken@libsdl.org>
date Sun, 07 May 2006 15:15:40 +0000
parents
children db78e088b6ce
rev   line source
1773
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
1
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2 Using SDL under Windows with the OpenWatcom compiler
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
3 ====================================================
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
4
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
5 Prerequisites
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
6 -------------
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
7
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
8 I have done the port under Windows XP Home with SP2 installed. Windows
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
9 2000 should also be working. I'm not so sure about ancient Windows NT,
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
10 since only DirectX 3 is available there. Building should be possible,
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
11 but running the compiled applications will probalbly fail with
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
12 SDL_VIDEODRIVER=directx. The windib driver should work, though.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
13
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
14 To compile and use the SDL with Open Watcom you will need the following:
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
15 - Open Watcom compiler. I used version 1.5. The environment variables
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
16 PATH, WATCOM and INCLUDE need to be set appropriately - please consult
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
17 the OpenWatcom documentation and instructions given during the
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
18 installation of the compiler.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
19 My setup looks like this in owvars.bat:
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
20 set WATCOM=C:\watcom
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
21 set INCLUDE=%WATCOM%\h;%WATCOM%\h\nt
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
22 set PATH=%PATH%;%WATCOM%\binnt;%WATCOM%\binw
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
23 - A fairly recent DirectX SDK. The original unmodified DX8 SDK works, as
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
24 well as the minimal DirectX 7 SDK from the Allegro download site
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
25 (<http://alleg.sourceforge.net/files/dx70_min.zip>).
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
26 - The SDL sources from Subversion
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
27 - The file Watcom-Win32.zip (now available in Subversion)
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
28
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
29
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
30 Building the Library
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
31 --------------------
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
32
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
33 1) In the SDL base directory extract the archive Watcom-Win32.zip. This
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
34 creates a subdirectory named 'watcom'.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
35 2) The makefile expects the environment variable DXDIR to be set to the
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
36 base directory of a DirectX SDK. I have tried a stock DX8 SDK from
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
37 Microsoft as well as the minimal DirectX 7 SDK from the Allegro
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
38 download site.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
39 You can also edit the makefile directly and hard code your path to
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
40 the SDK on your system.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
41 I have this in my setup:
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
42 set DXDIR=D:\devel\DX8_SDK
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
43 3) Enter the watcom directory and run
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
44 wmake sdl
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
45 4) All tests from the test directory are working and can be built by
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
46 running
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
47 wmake tests
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
48
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
49 Notes:
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
50
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
51 The makefile offers some options to tweak the way the library is built.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
52 You have at your disposal the option to build a static (default)
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
53 library, or a DLL (with tgt=dll). You can also choose whether to build
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
54 a Release (default) or a Debug version (with build=debug) of the tests
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
55 and library. Please consult the usage comment at the top of the
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
56 makefile for usage instructions.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
57
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
58 If you specify a test target (i.e. 'wmake tests' for all tests, or
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
59 selected targets like 'wmake testgl testvidinfo testoverlay2'), the
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
60 tests are always freshly compiled and linked. This is done to
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
61 minimise hassle when switching between library versions (static vs.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
62 DLL), because they require subtly different options.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
63 Also, the test executables are put directly into the test directory,
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
64 so they can find their data files. The clean target of the makefile
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
65 removes the test executables and the SDL.dll file from the test
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
66 directory.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
67
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
68 To use the library in your own projects with Open Watcom, you can use
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
69 the way the tests are built as base of your own build environment.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
70
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
71
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
72 Test applications
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
73 -----------------
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
74
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
75 I've tried to make all tests work. The following table gives an overview
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
76 of the current status.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
77
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
78 Testname Status
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
79 ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
80 checkkeys +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
81 graywin +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
82 loopwave +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
83 testalpha +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
84 testbitmap +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
85 testdyngl +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
86 testerror +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
87 testfile +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
88 testgamma +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
89 testgl +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
90 testhread +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
91 testiconv - (all failed)
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
92 testkeys +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
93 testlock +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
94 testoverlay + (needs 'set SDL_VIDEODRIVER=directx')
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
95 testoverlay2 + (needs 'set SDL_VIDEODRIVER=directx')
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
96 testpalette +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
97 testplatform +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
98 testsem +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
99 testsprite +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
100 testtimer +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
101 testver +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
102 testvidinfo +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
103 testwin - (fading doesn't seem right)
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
104 testwm +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
105 torturethread +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
106 testcdrom +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
107 testjoystick not tested
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
108 threadwin +
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
109
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
110
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
111 TODO
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
112 ----
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
113
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
114 There is room for further improvement:
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
115 - Test joystick functionality.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
116 - Investigate fading issue in 'testwin' test.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
117 - Fix the UTF-8 support.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
118 - Adapt the makefile/object file list to support more target systems
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
119 - Use "#pragma aux" syntax for the CPU info functions.
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
120
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
121
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
122 Questions and Comments
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
123 ----------------------
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
124
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
125 Please direct any questions or comments to me: <mailto:macpete@gmx.de>
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
126
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
127 Happy Coding!
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
128
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
129 Marc Peter