• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Bin/H29-Apr-2021-826622

BinWrappers/H29-Apr-2021-807588

Conf/H03-May-2022-7,2106,448

Plugin/H29-Apr-2021-613410

Scripts/H29-Apr-2021-12,2939,975

Source/H29-Apr-2021-382,773270,163

Tests/H29-Apr-2021-674415

UserManuals/H29-Apr-2021-7,2667,236

.gitignoreH A D29-Apr-2021407 2020

BuildEnvH A D29-Apr-20215.7 KiB270222

Edk2ToolsBuild.pyH A D29-Apr-20216.2 KiB178127

GNUmakefileH A D29-Apr-2021606 2814

MakefileH A D29-Apr-20211.5 KiB3519

ReadMe.rstH A D29-Apr-20211.5 KiB4229

basetools_calling_path_env.yamlH A D29-Apr-2021249 1211

basetools_path_env.yamlH A D29-Apr-2021264 1211

get_vsvars.batH A D29-Apr-20213.9 KiB10185

set_vsprefix_envs.batH A D29-Apr-20218.2 KiB243223

toolsetup.batH A D29-Apr-202113.5 KiB483441

ReadMe.rst

1This directory contains the EDK II build tools and template files.
2Templates are located in the Conf directory, while the tools executables for
3Microsoft Windows Operating Systems are located in the Bin\\Win32 directory, other
4directory contains tools source.
5
6Build step to generate the binary tools
7---------------------------------------
8
9Windows/Visual Studio Notes
10===========================
11
12To build the BaseTools, you should run the standard vsvars32.bat script
13from your preferred Visual Studio installation or you can run get_vsvars.bat
14to use latest automatically detected version.
15
16In addition to this, you should set the following environment variables::
17
18 * EDK_TOOLS_PATH - Path to the BaseTools sub directory under the edk2 tree
19 * BASE_TOOLS_PATH - The directory where the BaseTools source is located.
20   (It is the same directory where this README.rst is located.)
21
22After this, you can run the toolsetup.bat file, which is in the same
23directory as this file.  It should setup the remainder of the environment,
24and build the tools if necessary.
25
26Please also refer to the ``BuildNotes.txt`` file for more information on
27building under Windows.
28
29Unix-like operating systems
30===========================
31
32To build on Unix-like operating systems, you only need to type ``make`` in
33the base directory of the project.
34
35Ubuntu Notes
36============
37
38On Ubuntu, the following command should install all the necessary build
39packages to build all the C BaseTools::
40
41 sudo apt install build-essential uuid-dev
42