source: trunk/doc/Readme.txt@ 5087

Last change on this file since 5087 was 5021, checked in by sandervl, 25 years ago

added install requirements

File size: 27.7 KB
Line 
1
2 O D I N Public Alpha 5 - 1999/11/16
3 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4
5WANTED: We are still looking for talented developers that want to
6 contribute! Please take a look at the last section!
7
8NOTE: LICENSE.TXT describes the Project Odin Software License.
9
10
11Project Odin Information
12========================
13
141.0 Introduction
15----------------
16
17This readme is intended for end users that have downloaded the
18latest public alpha release and want to give it a try. For more
19information, be sure to regularly check http://www.netlabs.org/odin.
20
211.1 Purpose
22-----------
23
24Odin is a free Open Source project with the goal to eventually
25provide a fully working Win32 (Win 95/98/NT/2000) runtime environment,
26making it possible to run your favorite Windows programs under OS/2,
27as if they were native OS/2 programs. The second goal of Odin is to
28provide the full Win32 application programming interface (API) so
29that it is possible to build OS/2 programs using Windows source
30code. This is also refered to as Odin32 whereas Odin is the name
31of the Win32 binary emulator.
32
331.2 Current Status
34------------------
35
36Odin is still in the early alpha state so that it is very far from
37being widely usable. Most programs will not work or show many
38problems. Even though it is not usable for most programs, we have
39decided to do a public release in order to show how much progress
40the project has been made. A second goal is to attract more developers
41in order to speedup development. Our job includes rewriting most
42parts of Windows 95/NT without having the original source code so
43the more developers we have the more progess will be seen. The
44last public release (Alpha 0.004) has been in 1997 and the project
45has changed much since then. Everything is free and Open Source now
46and the base architecture has been improved quite a lot. We are now
47in a position where we can expect the first bigger applications to
48run well and to make much more visible progress.
49
501.3 Changes and additions in alpha 5
51------------------------------------
52- Removed Open32 dependacy in User32 code: windows, dialogs, buttons and
53 other controls creation and manipulation is now implemented fully in Odin32.
54 Applications have Win32 look: Win32 specific controls are also supported
55 (Open32 is still a requirement as other Odin32 functions use it!)
56- New and improved PE2LX converter
57- New Portable Executable Loader (PE) that overcomes some differences
58 between OS/2 and Win32 memory models (this does not include 512MB
59 per-process memory limitation in OS/2, you still need the Aurora-level
60 kernel for that)
61- New WIN32K32k.SYS driver that automates loading of Win32 binaries (no
62 conversion or invocation through PE.EXE loader is needed), now
63 compatible with WSeB (Aurora) and no longer dependant of code under
64 GNU license
65- Wine ports of common controls (comctl32), shell extensions (shell32) and
66 OLE
67- Full implementation of memory mapped files
68- Joystick support (winmm)
69- Direct Input (DirectX keyboard & mouse) added (Wine Port)
70- Rewrite of DirectDraw. More complete implementation.
71- Couple of (not core Win32 API, but often used) new DLLs (winasp32, lz32,
72 avifil32...), so users don't have to have Windows license at all to run
73 Windows programs
74- Many new API functions implemented or ported from Wine, allows
75 developers to port Win32 apps directly to OS/2 with little to no rewriting
76- Many bugfixes and enhancements
77- Many new programs that load and/or work with Odin
78- Full source code available
79
80
812.0 Installing Odin (UPDATED)
82-----------------------------
83
84Daily builds of Odin are available at ftp://ftp.os2.org/odin/daily.
85For people that do not have a suitable development setup for ODIN,
86we provide the latest binary code that way.
87
88Odin daily builds are now also distributed as WarpIn archives.
89WarpIn is a generic OS/2 installation application that can be
90downloaded from warpin.netlabs.org.
91
92Requirements for installing Odin:
93- You must install Odin on a partition that supports long filenames (e.g.
94 HPFS/JFS). Odin will not work on FAT!
95- OS/2 Warp 4, eComStation or Warp Server for e-Business (WSeB)
96 When using Warp 4, we recommend you apply fixpack 13 or higher.
97 * Warp 3 is not officially supported, but is reported to work by using
98 Warp 4 open32 dlls and patching them.
99
100Manual installation without WarpIn is not recommended. If you don't use WarpIn,
101then you *must* execute odininst.exe in the Odin system32 directory. (the first
102time Odin is installed or when the ChangeLog mentions fixes/changes in the
103installer)
104
105NOTE: You must install Odin on a partition that supports long filenames (e.g.
106 HPFS/JFS). Odin will not work on FAT!
107
108To install Odin, run warpin.exe with the name of the daily build archive
109as parameter.
110Follow the instructions to complete the installation.
111The Odin installation consists of:
112 - creating an Odin directory and copying the included files to
113 x:\odin and x:\odin\system32
114 - creating empty directories in x:\odin (to create a similar directory
115 structure as found in Windows)
116 - creating a basic registry for executing win32 applications in OS/2
117 - adds x:\odin\system32 to the path and libpath settings in your config.sys
118
119NOTE: You MUST install Odin at least once using WarpIn (unless you know
120 what you're doing). Afterwards you can use the daily build zipfiles
121 to upgrade to a newer version.
122
123To run DirectDraw games or Quake 2 in Voodoo mode, you must install Holger
124Veit's XFree86/2 support driver (XF86SUP.SYS).
125Visit http://ais.gmd.de/~veit/os2/xf86sup.html to download it.
126
127NOTE: The Glide and 3Dfx Opengl dll are no longer part of the basic Odin
128 installation package. It's available as opengl3dfx.zip on ftp.os2.org.
129
130
1312.0.1 Log files
132---------------
133The alpha 5 binaries and daily build zipfiles can generate logfiles to show
134what a win32 application is doing. This can be very useful to determine
135why certain applications don't run correctly.
136
137The major disadvantage of loggging is the overhead. Therefor it has been
138disabled by default in the alpha 5 release and daily builds.
139To enable logging set the environment variable WIN32LOG_ENABLED:
140 SET WIN32LOG_ENABLED=1
141
142To disable logging again, you must clear this variable:
143 SET WIN32LOG_ENABLED=
144
145
1462.1 Using Odin to run your Windows applications
147-----------------------------------------------
148
149Odin still has several ways to execute Win32 programs.
150
151
1522.2 The Ring3 Win32 Loader (PE.EXE)
153----------------------------------
154
155This is the new and also recommended method for loading programs.
156Unlike with the previous alphas, it is not required to convert or
157anyhow change the original files. Installing a device driver is
158also not necessary. Be sure to put the Odin binary directory into
159both the PATH and LIBPATH (alternatively you can use a batch file
160with SET PATH=C:\Odin;%PATH% and SET BEGINLIBPATH=C:\Odin;)
161and then call pe.exe winprog.exe param1 param2 ... If you wanted
162to start the Windows calculator, you would type
163
164pe calc
165
166The PE (Portable Executable, the Win32 executable format) loader
167will now try to load the application into memory and execute it.
168This will either work or fail with a loader message. If you get
169such a loader message, it is very likely that a required DLL is
170missing. To correct that problem, take a look at pe_0.log (or
171pe_1.log for the second program running at this time and so on).
172At the bottom of the file you will see the DLLs and the functions
173that the loader imports. It will tell you if it couldn't find a
174DLL and you can correct the problem and try it again.
175
176
1772.2.1 PE loader issues
178----------------------
179
180As the PE loader will create the process and load the program,
181a process utility such as pstat will always show PE.EXE as the
182executable file.
183It is also possible that a certain Win32 application becomes
184a zombie (that is when it does certain things the OS/2 kernel
185cannot recover such as die when waiting on a semaphore). Then
186it will not be possible to kill the application - only a system
187restart will help.
188Certain programs do use fixed memory addresses where they need
189to be loaded (i.e. they won't use fixups). You can notice this
190at the top of the loader log file (pe_0.log). If the fixed address
191is above the 512MB barrier present in Warp 4 and Warp 3, the
192program can not be run under these system. On Aurora (Warp Server
193for e-business) this limitation has been removed. Programs known
194to fall under this category are Microsoft Office (also the
195Office viewers) and other mainly Microsoft programs.
196
197
1982.3 Win32k.sys - native OS/2 PE-loader
199--------------------------------------
200
201The win32k.sys driver makes PE (Win32) executables equal to native OS/2
202executables by implementing a Ring 0 on-the-fly loader / converter.
203
204You may wonder how you may run a Win32 program using a device driver. You
205don't have to worry about that, simply treat the Win32 program just as an
206another OS/2 program. OS/2 can't tell the difference!
207No conversion of dlls or running programs thru Pe.EXE.
208
209For example, if you fancy playing windows solitaire.
210 1) Make sure the necessary DLLs (MSVCRT.DLL and CARDS.DLL) are in you
211 PATH, current dir, SOL.EXE dir, Odin32 System32 dir, Odin32 System dir,
212 Odin32 dir, or LIBPATHs; and that you have SOL.EXE somewhere.
213
214 2) Then start SOL.EXE by simply typing SOL.EXE (with path if necessary).
215 It's also possible to start SOL.EXE from the desktop if you like.
216 Simply find the SOL.EXE icon (or create it) and double click on it!
217
218
2192.3.1 WARNING
220-------------
221
222The Win32k.sys is quite alpha software and any bugs which haven't been found
223yet may crash and/or corrupt you entire system! Make sure you have backed up
224important stuff first!
225
226We are not responsible for ANYTHING AT ALL! See Odin32 disclaimer...
227
228Before you install Win32k.sys make sure that you have a backdoor to your system
229which works. For example try to boot your system using the Alt+F1 during bootup
230and choose Commandline boot (F2). Make sure you have an textmode editor which
231works; for example TEDIT.EXE.
232
233
2342.3.2 Requirements
235------------------
236
237Win32k should at least work on OS/2 Warp 3 and above, but I don't get too
238surprised if it worked on 2.11 too. DBCS are not supported yet AFAIK.
239
240It no longer requires a kernel file for retail kernels (if you don't know what
241kernel you have, you have a retail kernel). Win32k does now contain a
242"database" for the most recent retail kernels. Currently this is:
243 Warp 4 fp#1 -> fp#14
244 Aurora GA, FP1, preFP2
245 Warp 3 fp#32-> fp#42
246
247If the running kernel is not found in the "database" or is a debug kernel
248wink32.sys will look for symbolfiles as it allways did.
249If you use the -s:<symfile> argument the given symbol file will be
250investigated before the database is searched.
251
252NOTE! It hasn't been fully verified that all the different national fixpaks
253have the same symbols as the us-english ones. Feedback on this issue is
254appreciated.
255
256NOTE! A piece of advice for those playing with debug-kernels: Make sure that
257c:\OS2KRNL.SYM is matching the running kernel.
258
2592.3.2.1 Warp 3
260--------------
261
262Win32k is not tested with Warp 3. It is _supposed_ to work with Warp 3
263provided you are running fixpack 32 or later.
264(Fixpack 32 + y2kclock.exe is required for Y2K readyness anyway so...)
265
266
2672.3.3 Installation
268------------------
269
270To use Win32k.sys you have to add the following line into your config.sys:
271 device=<d:\path\system32>win32k.sys
272
273Where <d:\path\system32> is the path to the win32k.sys, i.e. usually the odin32
274system32 directory.
275
276After doing this, you'll have to reboot your machine to load the driver. During
277the boot process you will on a successful installation see some lines of
278technical info and finally a line saying:
279Win32k - Odin32 support driver.
280 Build: 14046 - v20.45
281 Found symbolfile: Win32k Symbol Database
282Win32k.sys succesfully initiated!
283
284If you don't see the last line something is wrong, and some error info will be
285shown. In the case of error the 'rc=<value>' is important to remember.
286
287
2882.3.4 Win32k parameters
289-----------------------
290
291The Capitalized letters are the one which is tested for when identifying the
292argument.
293
294There are some useful parameters for Win32k:
295-Quited Quiet driver initiation.
296 Default: disabled (ie. -V)
297
298-Verbose Verbose driver initiation.
299 Default: enabled
300
301-S:<filename> Full path to the current OS/2 kernel symbol file.
302 When this is specified the given
303 Default: symbol "database" and default locations are searched.
304
305
306Loader parameters:
307-SCript:<Y|N> Enable / disable UNIX script support.
308 Default: Enabled.
309
310-REXX:<Y|N> Enable / disable pure REXX script support.
311 Default: Enabled.
312
313-Java:<Y|N> Enable / disable JAVA loading.
314
315-Pe:<MIXED|PE2LX|PE|NOT>
316 Enabled / disable and set mode of the PE loading.
317 MIXED: Mix of Pe2Lx and Pe.exe. It uses Pe2Lx when
318 possible and backs out to pe.exe if the executables
319 aren't supported by the converter.
320 PE2LX: Pe2Lx loader only.
321 PE: Pe.exe only. The program is started using Pe.exe,
322 and the process name will be pe.exe.
323 NOT: Disable PE loading.
324
325
326Logging parameters:
327-L<:E|:D> Enables/Disables logging.
328 Default: disabled.
329
330-Com:<1|2|3|4>
331or
332-C<1|2|3|4> Which com-port to log to.
333 Default: -C2
334
335-Warning:<1|2|3|4>
336or
337-W<1|2|3|4> Warning/info level for PE loader. (This is warnings and info
338 which is published thru the com-port as logging information.)
339 Default: -W0
340
341
342Heap parameters:
343-HEAPMax: Maximum swappable heap size in bytes.
344 Default: 512KB
345
346-Heapinit: Initial heapsize in bytes.
347 Default: 16MB
348
349-RESHEAPMax: Maximum resident heap size in bytes.
350 Default: 256KB
351
352-Resheapinit: Initial resident in bytes.
353 Default: 16MB
354
355
356OS/2 Loader parameter:
357-Dllfixes<:E|:D>
358 Enables or Disables the long DLL name and non .DLL
359 extention fixes. OS/2 DLLs have been limited to 8 chars
360 names since version 2.<something>. This is a very bad
361 limitation. Also OS/2 forces all DLL loaded to loadtime
362 to have the extention '.DLL'.
363 Both these retritions are removed if this option is
364 enabled.
365 For DLL with non .DLL extention the internal name must
366 have to the extention included. (If you the experiences
367 problems with IMPLIB.EXE, enclose the internal name
368 in double-quotes.)
369 You should not make a DLL with a name starting with
370 DOSCALLS, DOSCALLS1, IBMVGA32, IBMDEV32 or IBMXGA32.
371 Current state for this feature is EXPERIMENTAL.
372 Default: Enabled
373
374
375Obsolete:
376-K:<filename> Ignored. Win32k scans the kernel image in memory!
377
378
3792.3.5 PE Loading
380----------------
381
382Win32k.sys are able to do PE loading in two different ways.
383
3842.3.5.1 PE2LX
385-------------
386The first one is called PE2LX and hence uses the original Win32k.sys method
387which is similar to Pe2Lx. This only requires that KERNEL32.DLL (ie. Odin32
388System32 directory) is present somewhere in the PATH or LIBPATHs. The DLL
389search order of PE2LX is now conforming with the Win32 order:
390 1. The directory of the executable (.EXE).
391 2. The current directory.
392 3. The Odin32 System32 directory. (Kernel32.dll directory)
393 4. The Odin32 System directory. (sibling of system32)
394 5. The Odin32 directory. (parent of system32)
395 6. The PATH environment variable. (TODO: quotes are not currently supported)
396 7. The BEGINLIBPATH.
397 8. The LIBPATH.
398 9. The ENDLIBPATH.
399(Note that the OS/2 DLLs in the _Odin32_ process are also found using this
400search order. This shouldn't matter much as nearly all of the OS/2 DLL are
401allready loaded. But if this proves a problem it could be changed.)
402
4032.3.5.2 PE
404----------
405The second one is called PE and invokes the Pe.EXE to execute the PE (Win32)
406programs. This of course requies that PE.EXE is found in the PATH.
407
4082.3.5.3 Modes
409--------------
410Win32k.sys have three (or four) different ways of combining these two methods,
411called modes:
412 PE2LX only
413 PE only
414 PE2LX with fallback on PE.
415 (fourth: NOT load any PE executables at all)
416
417The last one is the default one and is probably the best one currently.
418
419
4202.3.6 UNIX Shell Script Loader
421------------------------------
422
423The UNIX Shell Script Loader makes OS/2 able to run UNIX shell scripts as
424native executables, just as UNIX does. A unix shell script is a text file
425which has a starting line which specifies the interpreter for the script.
426
427For example a perl script:
428#!/bin/perl5 -Sx
429
430Or the most common one:
431#! /bin/sh
432
433Since Most OS/2 systems don't have a /bin directory or a /usr/bin directory
434the executable specified are looked for in these ways:
435 1. The exact filename specified.
436 2. The filename specified with .EXE extention.
437 3. Search the PATH for the filename (with out path of course).
438 4. Search the PATH for the filename with .EXE extention (and with out path of course).
439
440So, you could now execute UNIX shell script in OS/2 without even modify the
441path of the interpreter!
442
443The UNIX Shell Script Loader is enabled by default.
444
445
4462.3.6 Pure REXX Loader
447----------------------
448
449The Pure REXX Loader is a win32k.sys feature which enables REXX script with
450the extentions .RX and .REX to run as native OS/2 executables. These REXX
451scripts are executed using kRX.EXE which is found in the Odin32 System32
452directory.
453
454When we say "Pure REXX" scripts, that means no use of command line should
455occure in the script.
456
457The Pure REXX Loader is enabled by default.
458
459
4602.3.7 Java Loader/Invoker
461-------------------------
462
463Just for fun, I've added some code which detects JAVA class binaries and
464executes the class using JAVA.EXE. I first thougth this should be easy, but
465it turned out to have several problems.
466So please note the following:
467 - The classname is case sensitive, you have to write the exact class
468 name (with .class extention or what ever extention the file have)
469 when trying to execute a class. This could cause some throuble making
470 WPS program objects for the classes....
471 - To support executing of .class-files which are not in the current
472 directory win32k.sys send the directory of the .class-file in to
473 java.exe as a '-classpath' option. This option I soon found out had the
474 sideeffect of making JAVA.exe ignore the other CLASSPATH and not use
475 it's default class path. So now the contents of the CLASSPATH env. var.
476 or a generated default classpath is also sent in with the '-classpath'
477 option.
478 - The CLASSPATH environment variable should not be longer than 639 chars.
479
480When you have successfully installed Win32k.sys try type this at the
481commandline:
482c:\java11\demo\hello\hello.class
483
484This is then printed at my screen:
485Hello, Warped world!
486
487The JAVA Loader/Invoker is enabled by default.
488
489
4902.3.8 Rings - Ring 0 / Ring 3
491-----------------------------
492
493FYI. Ring 0 is the most priveleged level of execution in OS/2. The OS/2 kernel
494and device drivers execute at this level, while user applications execute in
495Ring 3, the least priveleged executing level.
496
497
4982.3.9 Win32k Control Center
499---------------------------
500
501In your Odin32 System32 directory there is a program called Win32kCC.exe,
502this is the Win32k Control Center (Win32kCC). Win32kCC is as the name says
503a program controlling Win32k.sys.
504
505Win32kCC allows you to enable, disable and change behaviour of different
506parts in Win32k.sys.
507
508For example: You could disable PE loading, or change it from MIXED mode (see
5092.3.4, -PE) to PE2LX mode. Or change it from PE2LX mode to PE mode to see
510if PE.EXE does a better job loading an executable.
511
512Note that the changes would not effect allready loaded executables.
513
514
515Win32kCC also displays status info on the running Win32k.sys and OS/2 kernel:
516 -Win32k.sys version number
517 -Win32k build time/date
518 -Path of the symbol file which was used (or Win32k Symbol Database).
519 -OS/2 kernel build number fixpack (guess)
520 -OS/2 kernel type as win32k has detected it
521 -Number of Pe2Lx currently loaded modules
522 -Win32k resident and swappable heap stats.
523
524PS. Beside the "PE Loader" area there is an "Elf Loader" area this is for a
525future Elf2Lx loader.
526
527
528
5292.4 The Ring3 conversion utility (PE2LX.EXE)
530--------------------------------------------
531
532PE2LX.EXE was the first method of running Win32 programs under
533OS/2. It is still provided and also functional but it has been
534deprecated. Using it is only sensible for debugging certain
535problems as it requires all DLLs and EXEs to be converted into
536another file format thus changing the original Win32 files.
537(It's only future use will be to convert Win32 executable with
538debuginfo to LX with HLL (IPMD/ICSDEBUG) debuginfo for
539sourcelevel debugging of Win32 executables under Odin32. This
540is not yet implemented but is being worked on.)
541
542
543
5443.0 Applications known to be working
545------------------------------------
546
547- Windows 95/NT Help Viewer (winhlp32.exe)
548- Windows 95/NT Registry Editor
549- Windows NT Solitaire (not the one from Windows 95)
550- Windows NT Freecell (not the one from Windows 95)
551- Windows 95/NT Calculator
552- Windows NT Pinball
553- Windows NT Minesweeper
554- Quake II
555- Red Alert
556- Professional Minesweeper
557- Windiff (part of Win32 SDK)
558- RealPlayer 7/8
559- Lotus Notes 5.0 (partly anyway)
560- Acrobat Distiller 3.0
561
562Note that many other applications load and/or partly work.
563
564
5654.0 Reporting Problems and Successes
566------------------------------------
567
568Bug reports can be sent to the Odin users mailinglist (odinusers@egroups.com;
569visit www.egroups.com for information about joining).
570The file ReportingBugs.txt explains how to send in a proper bug report.
571
572An application compatibility database has been created at Netlabs
573where you can share your experiences with Odin.
574The application compatibility database can be found at
575
576http://www.netlabs.org/odin/appdatabase
577
578NOTE: The application database is not meant for bug reports.
579
580
5815.0 Project Odin Source Code Notes
582----------------------------------
583
5845.1.0 Introduction
585------------------
586
587This chapter is intended for people more familiar with ODIN. It describes
588the various aspects of the project such as accessing the latest sources via
589cvs, building the binaries, running win32 applications, how to identify and
590report problems and bugs, as well as how to participate in this very
591promising project.
592
593
5945.1.1 Prerequisites:
595--------------------
596
597Required compilers/tools:
598 - IBM VisualAge 3.0 (CTx8 fixpack applied)
599 (version 3.6 might also work; version 4 is not recommended)
600 - OS/2 Warp 4 Toolkit (project apparently doesn't compile with
601 VAC's OS/2 headers)
602 Might also work with EMX headers. (haven't tried this!)
603 - ALP 4.0 (IBM Assembly Language Processor)
604 Download the tools zipfile from http://service.boulder.ibm.com/ddk/
605 (you need to register, but it's free)
606 - Unix-like rm.exe (nmake clean)
607
608Changes from last source code release:
609 - Uses Wine headers and a stripped down version of os2win.h (Open32
610 header)
611 - All Open32 apis have the 'O32_' prefix.
612 - All Open32 declarations are appended with '_O32' (mostly due to
613 calling convention differences)
614 - nmake DEBUG=1 builds the debug version
615 nmake builds the release version
616 - Several dlls (i.e. USER32, KERNEL32, ADVAPI32) contain extra .def
617 files that are used to create libraries that contain the api names
618 as required by the linker when you use them. (_apiname@nrparameterbytes)
619
620Wine header notes:
621 - Several header files have been changed to make them usable for VAC
622 - Several header files contain bugfixes (mostly parameter type changes)
623 - Several header files include additional declarations
624 - At this time we don't intend to have our changes included in the
625 Wine codebase as header files are not likely to change often.
626
627Coding conventions:
628 - Do NOT directly call the Open32 apis unless you're writing
629 a wrapper for it.
630 - Do NOT include os2.h directly. Use os2wrap.h instead.
631 os2wrap.h contains all the OS/2 apis with a wrapper around it to save
632 and restore the selector in FS. (some OS/2 apis set it back to the
633 default value (150b))
634 - Use the correct Win32 api when there are two version (ascii & unicode)
635 Calling the standard one (SendMessage) causes a error during
636 compilation.
637 Use SendMessageA instead.
638 - Source code style will be decided on in the near future.
639
640
6415.2.0 Accessing ODIN source code via CVS
642----------------------------------------
643
644Please check out http://www.netlabs.org/ and http://www.netlabs.org/odin.
645
646
6475.3.0 Building the binaries
648---------------------------
649
650The first time you want to build Odin, you must first run configure.cmd.
651This REXX script creates the file makefile.inc, which contains the absolute
652paths of important build directories.
653
654If your system setup meets above stated requirements, everything you
655need to do next for a binary build is:
656
657 nmake DEBUG=1
658
659or alternatively
660
661 nmake release (not working right now!)
662
663As the current state of the project is still known to be alpha level, one should
664expect some functions not to work properly. Therefore, we recommend the use of
665the debug-version which creates long logfiles for problem determination purpose
666and to allow active debugging with debuggers such as IPMD, ICAT, KDB, etc.
667
668Please note if you do not want to suffer from the performance loss of writing
669logfiles, you can disable logging even with the debug binaries of ODIN by
670setting:
671
672 SET NOWIN32LOG=YES
673
674To enable logging again, clear this environment variable by typing:
675
676 SET NOWIN32LOG=
677
678Logging is enabled by default in the debug build, but disabled by default
679in the nodebuginfo build and not present in the release build.
680
6815.3.1 Build problems
682--------------------
683
684ODIN is moving at a fast pace. Sometimes side effects of source dependencies may
685require you to do a full rebuild of the binaries instead of an incremental build.
686
687However, rarely it also happens the sources contained in the CVS repository do
688not build completely due to erroneous source code. Usually, this is fixed within
689two days at maximum.
690In such event, one can normally stick with the previous version of the particular
691module to further test win32 applications on ODIN.
692
693Please report such build problems through the appropriate channel.
694
695
6965.3.2 Downloading daily built binaries
697--------------------------------------
698
699http://www.os2.org/ has setup an ftp server that hosts the automatically
700built binaries on daily basis. For people that do not have a suitable
701development setup for ODIN, we provide the latest binary code that way.
702
703
7045.4.0 Project participation
705---------------------------
706
707As ODIN became an open source project, everybody is kindly invited to
708contribute his/her share to the progress of the project. May it be
709active coding, fixing bugs or just providing detailed information about
710examined problems.
711
712We suggest you subscribe to win32os2-wai and the corresponding mailing lists
713on http://www.egroups.com.
714In case you are interested in participating, every member of the project will
715be happy to give you direction to the right places and to give a personal
716introduction to further development of the particular modules.
717
718
7196.0 Warranty
720------------
721
722EXCEPT AS OTHERWISE RESTRICTED BY LAW, THIS WORK IS PROVIDED
723WITHOUT ANY EXPRESSED OR IMPLIED WARRANTIES OF ANY KIND, INCLUDING
724BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF FITNESS FOR A
725PARTICULAR PURPOSE, MERCHANTABILITY OR TITLE. EXCEPT AS
726OTHERWISE PROVIDED BY LAW, NO AUTHOR, COPYRIGHT HOLDER OR
727LICENSOR SHALL BE LIABLE TO YOU FOR DAMAGES OF ANY KIND, EVEN IF
728THEY HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
Note: See TracBrowser for help on using the repository browser.