• Home
Name Date Size #Lines LOC

..--

Bin/03-May-2024-675450

BinWrappers/PosixLike/03-May-2024-561395

Conf/03-May-2024-10,8709,474

Scripts/03-May-2024-2,5942,137

Source/03-May-2024-306,821204,541

Tests/03-May-2024-651367

UserManuals/03-May-2024-8,5158,487

gcc/03-May-2024-637500

.gitignoreD03-May-2024379 1616

BuildEnvD03-May-20246 KiB275227

BuildNotes.txtD03-May-20243.6 KiB8560

Contributions.txtD03-May-202410.6 KiB219189

GNUmakefileD03-May-2024986 3615

License.txtD03-May-20241.3 KiB2622

MakefileD03-May-2024988 3514

ReadMe.txtD03-May-20241.8 KiB4731

building-gcc.txtD03-May-2024773 1611

get_vsvars.batD03-May-20241.7 KiB4637

toolsetup.batD03-May-202412.2 KiB402361

ReadMe.txt

1This directory contains the next generation of EDK II build tools and template files.
2Templates are located in the Conf directory, while the tools executables for
3Microsoft Windows 32-bit Operating Systems are located in the Bin\Win32 directory, other
4directory contatins tools source.
5
61. Build step to generate the binary tools.
7
8=== Windows/Visual Studio Notes ===
9
10To build the BaseTools, you should run the standard vsvars32.bat script.
11
12In addition to this, you should set the following environment variables:
13
14 * EDK_TOOLS_PATH - Path to the BaseTools sub directory under the edk2 tree
15 * BASE_TOOLS_PATH - The directory where the BaseTools source is located.
16   (It is the same directory where this README.txt is located.)
17 * PYTHON_FREEZER_PATH - Path to where the python freezer tool is installed
18
19After this, you can run the toolsetup.bat file, which is in the same
20directory as this file.  It should setup the remainder of the environment,
21and build the tools if necessary.
22
23Please also refer to the 'BuildNotes.txt' file for more information on
24building under Windows.
25
26=== Unix-like operating systems ===
27
28To build on Unix-like operating systems, you only need to type 'make' in
29the base directory of the project.
30
31=== Ubuntu Notes ===
32
33On Ubuntu, the following command should install all the necessary build
34packages to build all the C BaseTools:
35
36  sudo apt-get install build-essential uuid-dev
37
38=== Python sqlite3 module ===
39On Windows, the cx_freeze will not copy the sqlite3.dll to the frozen
40binary directory (the same directory as build.exe and GenFds.exe).
41Please copy it manually from <PythonHome>\DLLs.
42
43The Python distributed with most recent Linux will have sqlite3 module
44built in. If not, please install sqlit3 package separately.
45
4626-OCT-2011
47