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: if - If the value is 1, then the module is enabled, otherwise it is disabled. A disabled module is not processed. ifnot - If the value is 1, then the module is disabled, otherwise it is enabled. A disabled module is not processed. 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. installbase - Base directory of the generated file in the installation directory. This attribute is optional. installname - Name of generated file in the installation directory. This attribute is optional, but if not specified, the generated file is not copied to the installation directory. usewrc - Use WRC to compile resources if true. If false, windres is used. This attribute is optional. If not specified, WRC will be used. warnings - Error out if false and at least one warning is emitted during building of this module. This attribute is optional. If not specified, it is assumed to be false. aliasof - Name of module that is aliased. Value: None. Elements: bootstrap, component, 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. win32cui - Builds a Win32 console executable. Default extension is .exe. Default entrypoint is _mainCRTStartup. The baseaddress module attribute is not applicable for this module type. 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. test - Builds a testsuite. Default extension is .exe. Default entrypoint is _mainCRTStartup. The baseaddress module attribute is not applicable for this module type. rpcserver - Generates and builds server code for an RPC interface. Default extension is .o. The entrypoint, baseaddress, and mangledsymbols module attributes are not applicable for this module type. rpcclient - Generates and builds client code for an RPC interface. Default extension is .o. The entrypoint, baseaddress, and mangledsymbols module attributes are not applicable for this module type. alias - Module is an alias for another module. This module type is the only module type for which the aliasof attribute is applicable. Only the module install functionality is aliased. 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. CDFile element -------------- A cdfile element specifies the name of a file that is to be put on the bootable CD. Syntax: ReadMe.txt 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: Name of file. Elements: None. Component element ----------------- A component element specifies that imports from a library are to be stubbed so tests can be run without actually calling the functions in the library. This element can only be used for modules of type test. Syntax: ... Attributes: name - Name of library. Value: None. Elements: Symbol. Symbol element -------------- A symbol element specifies an imported function from a library that is to be stubbed so tests can be run without actually calling the function in the library. Syntax: HeapAlloc@12 Attributes: newname - New name of symbol. This attribute is optional. Value: Name of symbol. 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: cdfile, 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: compilerflag, 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. Installfile element ------------------- An installfile element specifies the name of a file that is to be installed when using 'make install'. Syntax: ReadMe.txt Attributes: base - Put file in this directory within the install directory. This attribute is optional. newname - Name of file within the install directory. This attribute is optional. Value: Name of file. 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.