Changes between Version 8 and Version 9 of Building
- Timestamp:
- Jan 26, 2021, 9:07:02 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Building
v8 v9 3 3 == Install !OpenWatcom == 4 4 5 The first thing you need to do is install [http://www.openwatcom.org/ OpenWatcom] 1. 7aor higher. You need to install at least the 16-bit and 32-bit OS/2 targets. It is assumed that you will be installing the OS/2 hosted version of Open Watcom.5 The first thing you need to do is install [http://www.openwatcom.org/ OpenWatcom] 1.9 or higher. You need to install at least the 16-bit and 32-bit OS/2 targets. It is assumed that you will be installing the OS/2 hosted version of Open Watcom. 6 6 7 7 == Install the DDK == … … 13 13 Either ilink or wlink can be used, but when using wlink, lxlite is required to shrink the binary to a reasonable size. 14 14 15 == Install ACPI Toolkit ==16 17 If building with ACPI support, the [http://en.ecomstation.ru/projects/developer/?action=acpi ACPI developer toolkit] is required.18 19 15 == Configure the build environment == 20 16 21 Now you need to build Makefile.inc. This file configures the uniaud makefiles for your specific directory layout. Assuming directory layout described in [WikiStart#Gettingthesources Getting the sources], run 17 Ensure the WATCOM and DDK variables are setup to point to where they're installed. Set ROOT to point to the location of the uniaud source 22 18 23 19 == Build uniaud32 == … … 25 21 {{{ 26 22 cd uniaud32_workspace\trunk 27 configure28 23 }}} 29 30 and answer the questions.31 24 32 25 To build uniaud32, do whatever you do that make the !OpenWatcom available in the current command line session and then … … 36 29 }}} 37 30 38 !m_kee.cmd is a simple wmake front-end. 31 wmake 39 32 40 The 3 build types are: 41 - ACPI: The default. 42 - KEE: If for some reason you do not want to build with ACPI. Set ACPI=0 43 - W4: For support for older kernels, such as that in Warp 3. Mostly untested at this point. Set KEE=0 44 45 46 A full build should take less than 15? minutes on reasonably capable hardware and should complete without errors or warnings. 33 A full build should take less than 5 minutes on reasonably capable hardware and should complete without errors or warnings. 47 34 48 35 It is considered bad practice to commit sources that do not build error and warning free to the subversion repository. However, when multiple developers are making concurrent changes, this can happen.