ReactOS Build System Documentation ================================== Building ReactOS ---------------- To generate GNU make makefiles and building ReactOS do the following: 1) Go to the top-level reactos directory 2) Run the command: mingw32-make This will start building ReactOS. To build a bootable CD run the following command: mingw32-make bootcd This will create ReactOS.iso in the top-level reactos directory. Top-level XML Build File ------------------------ The top-level xml build file (ReactOS.xml) is processed by rbuild. The following is an example of how it could look like: include xi:include ---------- It is possible to split an xml build file over several files. The include element in the xi namespace is used to accomplish this. Syntax: Attributes: href - Name of xml build file to include. The filename is relative to the location of the current xml build file. Value: None. Elements: xi:fallback xi:fallback ----------- This element is used to provide the name of an alternate file that is to be included if the first include file did not exists. Attributes: None. Value: None. Elements: xi:include. Project element --------------- There can be one project per top-level XML build file. A project can only be defined in a top-level xml build file. Syntax: ... Attributes: name - Name of the project. makefile - Filename of the GNU makefile that is to be created. Value: None. Elements: define, directory, if, include, module, property Module element -------------- There can be zero or more modules per xml build file. Syntax: ... Attributes: name - Name of the module. Also the base name of the generated file if such file is generated for the particular module type. type - Type of module. See below for an explanation of module types. extension - Extension of the generated file if such file is generated for the particular module type. entrypoint - Entrypoint symbol of the generated file if such file is generated for the particular module type. baseaddress - Base address of the generated file if such file is generated for the particular module type. mangledsymbols - Controls wether or not to pass --kill-at to dlltool. If this attribute has the value false then --kill-at is passed to dlltool. If the value is true, then --kill-at is not passed to dlltool. If the generated file exports C++ classes then this need to be true. Value: None. Elements: bootstrap, define, dependency, directory, file, if, importlibrary, include, invoke, library, property. Module types ------------ The module type determines the actions that is to be carried out to process the module. The defined module types are seen below: buildtool - Builds a tool that can be run (invoked) when building ReactOS. Default extension is .exe when building on Windows and nothing when building on Linux. The entrypoint, baseaddress, and mangledsymbols module attributes are not applicable for this module type. staticlibrary - Builds a static library containing object files that can be linked together with other modules. Default extension is .a. The entrypoint, baseaddress, and mangledsymbols module attributes are not applicable for this module type. objectlibrary - Builds object files that can be linked together with other modules. Default extension is .o. The entrypoint, baseaddress, and mangledsymbols module attributes are not applicable for this module type. kernel - Builds ntoskrnl.exe. Default extension is .exe. Default entrypoint is _NtProcessStartup. kernelmodedll - Builds a kernel-mode DLL. Default extension is .dll. Default entrypoint is _DriverEntry@8. kernelmodedriver - Builds a kernel-mode driver. Default extension is .sys. Default entrypoint is _DriverEntry@8. nativedll - Builds a native DLL. Default extension is .dll. Default entrypoint is _DllMainCRTStartup@12. win32dll - Builds a Win32 DLL. Default extension is .dll. Default entrypoint is _DllMain@12. win32gui - Builds a Win32 GUI executable. Default extension is .exe. Default entrypoint is _WinMainCRTStartup. The baseaddress module attribute is not applicable for this module type. bootloader - Builds a bootloader. The entrypoint, baseaddress, and mangledsymbols module attributes are not applicable for this module type. bootsector - Builds one or more bootsector binaries. The entrypoint, baseaddress, and mangledsymbols module attributes are not applicable for this module type. iso - Builds a bootable CD. The entrypoint, baseaddress, and mangledsymbols module attributes are not applicable for this module type. Bootstrap element ----------------- A bootstrap element specifies that the generated file should be put on the bootable CD as a bootstrap file. Syntax: Attributes: base - Put file in this directory on the bootable CD. This attribute is optional. nameoncd - Name of file on the bootable CD. This attribute is optional. Value: None. Elements: None. Define element -------------- A define element specifies the name and (optionally) value of a define for the C/C++ compiler and resource compiler. Syntax: 0x501 Attributes: name - Name of define. Value: Value of define. The value is optional. Elements: None. Dependency element ------------------ A dependency element specifies the name of a module (usually of type buildtool) that is to be processed before the current module. Syntax: OtherModule Attributes: None. Value: Name of module. Elements: None. Directory element ----------------- A directory element specifies the name of a subdirectory. Syntax: ... Attributes: name - Name of directory. Value: None. Elements: directory, file, if, property. File element ------------ A file element specifies the name of a file that is to be processed. Syntax: MyFile.c Attributes: None. Value: Name of file. Elements: None. If element ---------- An if element allows for conditional processing of other elements. Syntax: ... Attributes: property - Name of the property that is to be evaluated. value - Value to compare to the value of the property. If the property has the specified value, then the subelements are processed. Value: None. Elements: define, directory, file, if, include, property. Importlibrary element --------------------- An importlibrary element specifies that an import library should be generated which other modules can use to link with the current module. Syntax: Attributes: definition - Filename of definition file (.def) used to generate the import library. The filename is relative to the current module. Value: None. Elements: None. Include element --------------- An include element specifies an include directory for the C/C++ compiler and resource compiler. Syntax: include Attributes: base - Module or project which the value of this element is relative to. This attribute is optional. If left out, the include directory is relative to the position of the top-level xml build file. Value: Relative include directory. Elements: None. Invoke element -------------- An invoke element specifies the name of a module which is to be executed before the current module is processed. Syntax: ntoskrnl.mc ../include/reactos/bugcodes.h bugcodes.rc Attributes: None. Value: Name of the module to execute. Elements: input, output. Input element ------------- An input element specifies a group of filenames that is to be passed as parameters to a build tool. Input filename parameters are located after output filename parameters on the command line. Attributes: None. Value: None. Elements: inputfile. Inputfile element ----------------- An inputfile element specifies a filename that is to be passed as a parameter to a build tool. Attributes: switches - Switches that is passed as parameters just before the filename. This attribute is optional. Value: Name of file that is to be passed as a parameter to the build tool. Elements: None. Output element -------------- An output element specifies a group of filenames that is to be passed as parameters to a build tool. Output filename parameters are located before input filename parameters on the command line. Attributes: None. Value: None. Elements: outputfile. Outputfile element ------------------ An outputfile element specifies a filename that is to be passed as a parameter to a build tool. Attributes: switches - Switches that is passed as parameters just before the filename. This attribute is optional. Value: Name of file that is to be passed as a parameter to the build tool. Elements: None. Library ------- An importlibrary element specifies the name of another module which is to be linked with the current module. Syntax: MyLibraryModule Attributes: None. Value: Name of the module to link with. Elements: None. Property -------- A property element specifies the name and value of a property that can be used for conditional processing of the xml build file. Syntax: Attributes: name - Name of property. value - Value of property. Value: None. Elements: None.