]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Source/Python/build/build.py
ShellPkg/UefiShellAcpiViewCommandLib: Change the note in uni
[mirror_edk2.git] / BaseTools / Source / Python / build / build.py
CommitLineData
52302d4d
LG
1## @file\r
2# build a platform or a module\r
3#\r
997a5d1b 4# Copyright (c) 2014, Hewlett-Packard Development Company, L.P.<BR>\r
f30e4aed 5# Copyright (c) 2007 - 2019, Intel Corporation. All rights reserved.<BR>\r
370544d1 6# Copyright (c) 2018, Hewlett Packard Enterprise Development, L.P.<BR>\r
52302d4d 7#\r
40d841f6 8# This program and the accompanying materials\r
52302d4d
LG
9# are licensed and made available under the terms and conditions of the BSD License\r
10# which accompanies this distribution. The full text of the license may be found at\r
11# http://opensource.org/licenses/bsd-license.php\r
12#\r
13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15#\r
16\r
17##\r
18# Import Modules\r
19#\r
1ccc4d89 20from __future__ import print_function\r
1be2ed90 21import Common.LongFilePathOs as os\r
52302d4d 22import re\r
52302d4d
LG
23import sys\r
24import glob\r
25import time\r
26import platform\r
27import traceback\r
4afd3d04 28import encodings.ascii\r
29af38b0 29import multiprocessing\r
52302d4d
LG
30\r
31from struct import *\r
32from threading import *\r
b2985672 33import threading\r
52302d4d
LG
34from optparse import OptionParser\r
35from subprocess import *\r
36from Common import Misc as Utils\r
37\r
1be2ed90 38from Common.LongFilePathSupport import OpenLongFilePath as open\r
938cf4c3
CJ
39from Common.TargetTxtClassObject import TargetTxtClassObject\r
40from Common.ToolDefClassObject import ToolDefClassObject\r
52302d4d 41from Common.DataType import *\r
b36d134f 42from Common.BuildVersion import gBUILD_VERSION\r
52302d4d
LG
43from AutoGen.AutoGen import *\r
44from Common.BuildToolError import *\r
2f818ed0 45from Workspace.WorkspaceDatabase import WorkspaceDatabase\r
05cc51ad 46from Common.MultipleWorkspace import MultipleWorkspace as mws\r
52302d4d
LG
47\r
48from BuildReport import BuildReport\r
49from GenPatchPcdTable.GenPatchPcdTable import *\r
50from PatchPcdValue.PatchPcdValue import *\r
51\r
52import Common.EdkLogger\r
53import Common.GlobalData as GlobalData\r
b3497bad 54from GenFds.GenFds import GenFds, GenFdsApi\r
52302d4d 55\r
ccaa7754 56from collections import OrderedDict, defaultdict\r
6e6d767e 57\r
52302d4d 58# Version and Copyright\r
4d10d18d 59VersionNumber = "0.60" + ' ' + gBUILD_VERSION\r
52302d4d 60__version__ = "%prog Version " + VersionNumber\r
f7496d71 61__copyright__ = "Copyright (c) 2007 - 2018, Intel Corporation All rights reserved."\r
52302d4d
LG
62\r
63## standard targets of build command\r
64gSupportedTarget = ['all', 'genc', 'genmake', 'modules', 'libraries', 'fds', 'clean', 'cleanall', 'cleanlib', 'run']\r
65\r
66## build configuration file\r
97fa0ee9
YL
67gBuildConfiguration = "target.txt"\r
68gToolsDefinition = "tools_def.txt"\r
52302d4d 69\r
64b2609f
LG
70TemporaryTablePattern = re.compile(r'^_\d+_\d+_[a-fA-F0-9]+$')\r
71TmpTableDict = {}\r
72\r
52302d4d
LG
73## Check environment PATH variable to make sure the specified tool is found\r
74#\r
75# If the tool is found in the PATH, then True is returned\r
76# Otherwise, False is returned\r
77#\r
78def IsToolInPath(tool):\r
27c4ceb4 79 if 'PATHEXT' in os.environ:\r
52302d4d
LG
80 extns = os.environ['PATHEXT'].split(os.path.pathsep)\r
81 else:\r
82 extns = ('',)\r
83 for pathDir in os.environ['PATH'].split(os.path.pathsep):\r
84 for ext in extns:\r
85 if os.path.exists(os.path.join(pathDir, tool + ext)):\r
86 return True\r
87 return False\r
88\r
89## Check environment variables\r
90#\r
91# Check environment variables that must be set for build. Currently they are\r
92#\r
93# WORKSPACE The directory all packages/platforms start from\r
94# EDK_TOOLS_PATH The directory contains all tools needed by the build\r
95# PATH $(EDK_TOOLS_PATH)/Bin/<sys> must be set in PATH\r
96#\r
97# If any of above environment variable is not set or has error, the build\r
98# will be broken.\r
99#\r
100def CheckEnvVariable():\r
101 # check WORKSPACE\r
102 if "WORKSPACE" not in os.environ:\r
103 EdkLogger.error("build", ATTRIBUTE_NOT_AVAILABLE, "Environment variable not found",\r
104 ExtraData="WORKSPACE")\r
105\r
106 WorkspaceDir = os.path.normcase(os.path.normpath(os.environ["WORKSPACE"]))\r
107 if not os.path.exists(WorkspaceDir):\r
caf74495 108 EdkLogger.error("build", FILE_NOT_FOUND, "WORKSPACE doesn't exist", ExtraData=WorkspaceDir)\r
52302d4d
LG
109 elif ' ' in WorkspaceDir:\r
110 EdkLogger.error("build", FORMAT_NOT_SUPPORTED, "No space is allowed in WORKSPACE path",\r
111 ExtraData=WorkspaceDir)\r
112 os.environ["WORKSPACE"] = WorkspaceDir\r
f7496d71 113\r
05cc51ad
LY
114 # set multiple workspace\r
115 PackagesPath = os.getenv("PACKAGES_PATH")\r
116 mws.setWs(WorkspaceDir, PackagesPath)\r
f6190a01
YZ
117 if mws.PACKAGES_PATH:\r
118 for Path in mws.PACKAGES_PATH:\r
119 if not os.path.exists(Path):\r
caf74495 120 EdkLogger.error("build", FILE_NOT_FOUND, "One Path in PACKAGES_PATH doesn't exist", ExtraData=Path)\r
f6190a01
YZ
121 elif ' ' in Path:\r
122 EdkLogger.error("build", FORMAT_NOT_SUPPORTED, "No space is allowed in PACKAGES_PATH", ExtraData=Path)\r
52302d4d 123\r
4afd3d04 124\r
52302d4d 125 os.environ["EDK_TOOLS_PATH"] = os.path.normcase(os.environ["EDK_TOOLS_PATH"])\r
4afd3d04 126\r
52302d4d
LG
127 # check EDK_TOOLS_PATH\r
128 if "EDK_TOOLS_PATH" not in os.environ:\r
129 EdkLogger.error("build", ATTRIBUTE_NOT_AVAILABLE, "Environment variable not found",\r
130 ExtraData="EDK_TOOLS_PATH")\r
131\r
132 # check PATH\r
133 if "PATH" not in os.environ:\r
134 EdkLogger.error("build", ATTRIBUTE_NOT_AVAILABLE, "Environment variable not found",\r
135 ExtraData="PATH")\r
136\r
137 GlobalData.gWorkspace = WorkspaceDir\r
52302d4d 138\r
0d2711a6 139 GlobalData.gGlobalDefines["WORKSPACE"] = WorkspaceDir\r
0d2711a6 140 GlobalData.gGlobalDefines["EDK_TOOLS_PATH"] = os.environ["EDK_TOOLS_PATH"]\r
f7496d71 141\r
52302d4d
LG
142## Get normalized file path\r
143#\r
144# Convert the path to be local format, and remove the WORKSPACE path at the\r
145# beginning if the file path is given in full path.\r
146#\r
147# @param FilePath File path to be normalized\r
148# @param Workspace Workspace path which the FilePath will be checked against\r
149#\r
150# @retval string The normalized file path\r
151#\r
152def NormFile(FilePath, Workspace):\r
153 # check if the path is absolute or relative\r
154 if os.path.isabs(FilePath):\r
155 FileFullPath = os.path.normpath(FilePath)\r
156 else:\r
05cc51ad
LY
157 FileFullPath = os.path.normpath(mws.join(Workspace, FilePath))\r
158 Workspace = mws.getWs(Workspace, FilePath)\r
52302d4d
LG
159\r
160 # check if the file path exists or not\r
161 if not os.path.isfile(FileFullPath):\r
47fea6af 162 EdkLogger.error("build", FILE_NOT_FOUND, ExtraData="\t%s (Please give file in absolute path or relative to WORKSPACE)" % FileFullPath)\r
52302d4d
LG
163\r
164 # remove workspace directory from the beginning part of the file path\r
165 if Workspace[-1] in ["\\", "/"]:\r
166 return FileFullPath[len(Workspace):]\r
167 else:\r
168 return FileFullPath[(len(Workspace) + 1):]\r
169\r
170## Get the output of an external program\r
171#\r
172# This is the entrance method of thread reading output of an external program and\r
173# putting them in STDOUT/STDERR of current program.\r
174#\r
175# @param From The stream message read from\r
176# @param To The stream message put on\r
177# @param ExitFlag The flag used to indicate stopping reading\r
178#\r
179def ReadMessage(From, To, ExitFlag):\r
180 while True:\r
181 # read one line a time\r
182 Line = From.readline()\r
183 # empty string means "end"\r
d943b0c3
FB
184 if Line is not None and Line != b"":\r
185 To(Line.rstrip().decode(encoding='utf-8', errors='ignore'))\r
52302d4d
LG
186 else:\r
187 break\r
188 if ExitFlag.isSet():\r
189 break\r
190\r
191## Launch an external program\r
192#\r
193# This method will call subprocess.Popen to execute an external program with\r
194# given options in specified directory. Because of the dead-lock issue during\r
195# redirecting output of the external program, threads are used to to do the\r
196# redirection work.\r
197#\r
198# @param Command A list or string containing the call of the program\r
199# @param WorkingDir The directory in which the program will be running\r
200#\r
201def LaunchCommand(Command, WorkingDir):\r
1b8eca8b 202 BeginTime = time.time()\r
52302d4d
LG
203 # if working directory doesn't exist, Popen() will raise an exception\r
204 if not os.path.isdir(WorkingDir):\r
205 EdkLogger.error("build", FILE_NOT_FOUND, ExtraData=WorkingDir)\r
f7496d71 206\r
01ce3538
HC
207 # Command is used as the first Argument in following Popen().\r
208 # It could be a string or sequence. We find that if command is a string in following Popen(),\r
209 # ubuntu may fail with an error message that the command is not found.\r
210 # So here we may need convert command from string to list instance.\r
ed728046
HW
211 if platform.system() != 'Windows':\r
212 if not isinstance(Command, list):\r
df0cee8d 213 Command = Command.split()\r
ed728046 214 Command = ' '.join(Command)\r
df0cee8d 215\r
52302d4d
LG
216 Proc = None\r
217 EndOfProcedure = None\r
218 try:\r
219 # launch the command\r
71f5913e 220 Proc = Popen(Command, stdout=PIPE, stderr=PIPE, env=os.environ, cwd=WorkingDir, bufsize=-1, shell=True)\r
52302d4d
LG
221\r
222 # launch two threads to read the STDOUT and STDERR\r
223 EndOfProcedure = Event()\r
224 EndOfProcedure.clear()\r
225 if Proc.stdout:\r
226 StdOutThread = Thread(target=ReadMessage, args=(Proc.stdout, EdkLogger.info, EndOfProcedure))\r
227 StdOutThread.setName("STDOUT-Redirector")\r
228 StdOutThread.setDaemon(False)\r
229 StdOutThread.start()\r
230\r
231 if Proc.stderr:\r
232 StdErrThread = Thread(target=ReadMessage, args=(Proc.stderr, EdkLogger.quiet, EndOfProcedure))\r
233 StdErrThread.setName("STDERR-Redirector")\r
234 StdErrThread.setDaemon(False)\r
235 StdErrThread.start()\r
236\r
237 # waiting for program exit\r
238 Proc.wait()\r
239 except: # in case of aborting\r
240 # terminate the threads redirecting the program output\r
790f60f2 241 EdkLogger.quiet("(Python %s on %s) " % (platform.python_version(), sys.platform) + traceback.format_exc())\r
4231a819 242 if EndOfProcedure is not None:\r
52302d4d 243 EndOfProcedure.set()\r
4231a819 244 if Proc is None:\r
0d1f5b2b 245 if not isinstance(Command, type("")):\r
52302d4d
LG
246 Command = " ".join(Command)\r
247 EdkLogger.error("build", COMMAND_FAILURE, "Failed to start command", ExtraData="%s [%s]" % (Command, WorkingDir))\r
248\r
249 if Proc.stdout:\r
250 StdOutThread.join()\r
251 if Proc.stderr:\r
252 StdErrThread.join()\r
253\r
254 # check the return code of the program\r
255 if Proc.returncode != 0:\r
0d1f5b2b 256 if not isinstance(Command, type("")):\r
52302d4d 257 Command = " ".join(Command)\r
725cdb8f
YZ
258 # print out the Response file and its content when make failure\r
259 RespFile = os.path.join(WorkingDir, 'OUTPUT', 'respfilelist.txt')\r
260 if os.path.isfile(RespFile):\r
261 f = open(RespFile)\r
262 RespContent = f.read()\r
263 f.close()\r
264 EdkLogger.info(RespContent)\r
265\r
52302d4d 266 EdkLogger.error("build", COMMAND_FAILURE, ExtraData="%s [%s]" % (Command, WorkingDir))\r
1b8eca8b 267 return "%dms" % (int(round((time.time() - BeginTime) * 1000)))\r
52302d4d
LG
268\r
269## The smallest unit that can be built in multi-thread build mode\r
270#\r
271# This is the base class of build unit. The "Obj" parameter must provide\r
272# __str__(), __eq__() and __hash__() methods. Otherwise there could be build units\r
273# missing build.\r
274#\r
275# Currently the "Obj" should be only ModuleAutoGen or PlatformAutoGen objects.\r
276#\r
277class BuildUnit:\r
278 ## The constructor\r
279 #\r
280 # @param self The object pointer\r
281 # @param Obj The object the build is working on\r
282 # @param Target The build target name, one of gSupportedTarget\r
283 # @param Dependency The BuildUnit(s) which must be completed in advance\r
284 # @param WorkingDir The directory build command starts in\r
285 #\r
286 def __init__(self, Obj, BuildCommand, Target, Dependency, WorkingDir="."):\r
287 self.BuildObject = Obj\r
288 self.Dependency = Dependency\r
289 self.WorkingDir = WorkingDir\r
290 self.Target = Target\r
291 self.BuildCommand = BuildCommand\r
0d2711a6
LG
292 if not BuildCommand:\r
293 EdkLogger.error("build", OPTION_MISSING,\r
294 "No build command found for this module. "\r
4afd3d04 295 "Please check your setting of %s_%s_%s_MAKE_PATH in Conf/tools_def.txt file." %\r
0d2711a6 296 (Obj.BuildTarget, Obj.ToolChain, Obj.Arch),\r
52302d4d
LG
297 ExtraData=str(Obj))\r
298\r
0d2711a6 299\r
52302d4d
LG
300 ## str() method\r
301 #\r
08dd311f 302 # It just returns the string representation of self.BuildObject\r
52302d4d
LG
303 #\r
304 # @param self The object pointer\r
305 #\r
306 def __str__(self):\r
307 return str(self.BuildObject)\r
308\r
309 ## "==" operator method\r
310 #\r
311 # It just compares self.BuildObject with "Other". So self.BuildObject must\r
312 # provide its own __eq__() method.\r
313 #\r
314 # @param self The object pointer\r
315 # @param Other The other BuildUnit object compared to\r
316 #\r
317 def __eq__(self, Other):\r
b7b51025
CJ
318 return Other and self.BuildObject == Other.BuildObject \\r
319 and Other.BuildObject \\r
52302d4d
LG
320 and self.BuildObject.Arch == Other.BuildObject.Arch\r
321\r
322 ## hash() method\r
323 #\r
324 # It just returns the hash value of self.BuildObject which must be hashable.\r
325 #\r
326 # @param self The object pointer\r
327 #\r
328 def __hash__(self):\r
329 return hash(self.BuildObject) + hash(self.BuildObject.Arch)\r
330\r
331 def __repr__(self):\r
332 return repr(self.BuildObject)\r
333\r
334## The smallest module unit that can be built by nmake/make command in multi-thread build mode\r
335#\r
336# This class is for module build by nmake/make build system. The "Obj" parameter\r
337# must provide __str__(), __eq__() and __hash__() methods. Otherwise there could\r
338# be make units missing build.\r
339#\r
340# Currently the "Obj" should be only ModuleAutoGen object.\r
341#\r
342class ModuleMakeUnit(BuildUnit):\r
343 ## The constructor\r
344 #\r
345 # @param self The object pointer\r
346 # @param Obj The ModuleAutoGen object the build is working on\r
347 # @param Target The build target name, one of gSupportedTarget\r
348 #\r
349 def __init__(self, Obj, Target):\r
350 Dependency = [ModuleMakeUnit(La, Target) for La in Obj.LibraryAutoGenList]\r
351 BuildUnit.__init__(self, Obj, Obj.BuildCommand, Target, Dependency, Obj.MakeFileDir)\r
352 if Target in [None, "", "all"]:\r
353 self.Target = "tbuild"\r
354\r
355## The smallest platform unit that can be built by nmake/make command in multi-thread build mode\r
356#\r
357# This class is for platform build by nmake/make build system. The "Obj" parameter\r
358# must provide __str__(), __eq__() and __hash__() methods. Otherwise there could\r
359# be make units missing build.\r
360#\r
361# Currently the "Obj" should be only PlatformAutoGen object.\r
362#\r
363class PlatformMakeUnit(BuildUnit):\r
364 ## The constructor\r
365 #\r
366 # @param self The object pointer\r
367 # @param Obj The PlatformAutoGen object the build is working on\r
368 # @param Target The build target name, one of gSupportedTarget\r
369 #\r
370 def __init__(self, Obj, Target):\r
371 Dependency = [ModuleMakeUnit(Lib, Target) for Lib in self.BuildObject.LibraryAutoGenList]\r
372 Dependency.extend([ModuleMakeUnit(Mod, Target) for Mod in self.BuildObject.ModuleAutoGenList])\r
373 BuildUnit.__init__(self, Obj, Obj.BuildCommand, Target, Dependency, Obj.MakeFileDir)\r
374\r
375## The class representing the task of a module build or platform build\r
376#\r
377# This class manages the build tasks in multi-thread build mode. Its jobs include\r
378# scheduling thread running, catching thread error, monitor the thread status, etc.\r
379#\r
380class BuildTask:\r
381 # queue for tasks waiting for schedule\r
6e6d767e 382 _PendingQueue = OrderedDict()\r
52302d4d
LG
383 _PendingQueueLock = threading.Lock()\r
384\r
385 # queue for tasks ready for running\r
6e6d767e 386 _ReadyQueue = OrderedDict()\r
52302d4d
LG
387 _ReadyQueueLock = threading.Lock()\r
388\r
389 # queue for run tasks\r
6e6d767e 390 _RunningQueue = OrderedDict()\r
52302d4d
LG
391 _RunningQueueLock = threading.Lock()\r
392\r
393 # queue containing all build tasks, in case duplicate build\r
6e6d767e 394 _TaskQueue = OrderedDict()\r
52302d4d
LG
395\r
396 # flag indicating error occurs in a running thread\r
397 _ErrorFlag = threading.Event()\r
398 _ErrorFlag.clear()\r
399 _ErrorMessage = ""\r
400\r
401 # BoundedSemaphore object used to control the number of running threads\r
402 _Thread = None\r
403\r
404 # flag indicating if the scheduler is started or not\r
405 _SchedulerStopped = threading.Event()\r
406 _SchedulerStopped.set()\r
407\r
408 ## Start the task scheduler thread\r
409 #\r
410 # @param MaxThreadNumber The maximum thread number\r
411 # @param ExitFlag Flag used to end the scheduler\r
412 #\r
413 @staticmethod\r
414 def StartScheduler(MaxThreadNumber, ExitFlag):\r
415 SchedulerThread = Thread(target=BuildTask.Scheduler, args=(MaxThreadNumber, ExitFlag))\r
416 SchedulerThread.setName("Build-Task-Scheduler")\r
417 SchedulerThread.setDaemon(False)\r
418 SchedulerThread.start()\r
419 # wait for the scheduler to be started, especially useful in Linux\r
420 while not BuildTask.IsOnGoing():\r
421 time.sleep(0.01)\r
422\r
423 ## Scheduler method\r
424 #\r
425 # @param MaxThreadNumber The maximum thread number\r
426 # @param ExitFlag Flag used to end the scheduler\r
427 #\r
428 @staticmethod\r
429 def Scheduler(MaxThreadNumber, ExitFlag):\r
430 BuildTask._SchedulerStopped.clear()\r
431 try:\r
432 # use BoundedSemaphore to control the maximum running threads\r
433 BuildTask._Thread = BoundedSemaphore(MaxThreadNumber)\r
434 #\r
435 # scheduling loop, which will exits when no pending/ready task and\r
436 # indicated to do so, or there's error in running thread\r
437 #\r
438 while (len(BuildTask._PendingQueue) > 0 or len(BuildTask._ReadyQueue) > 0 \\r
439 or not ExitFlag.isSet()) and not BuildTask._ErrorFlag.isSet():\r
440 EdkLogger.debug(EdkLogger.DEBUG_8, "Pending Queue (%d), Ready Queue (%d)"\r
441 % (len(BuildTask._PendingQueue), len(BuildTask._ReadyQueue)))\r
442\r
443 # get all pending tasks\r
444 BuildTask._PendingQueueLock.acquire()\r
f8d11e5a 445 BuildObjectList = list(BuildTask._PendingQueue.keys())\r
52302d4d
LG
446 #\r
447 # check if their dependency is resolved, and if true, move them\r
448 # into ready queue\r
449 #\r
450 for BuildObject in BuildObjectList:\r
451 Bt = BuildTask._PendingQueue[BuildObject]\r
452 if Bt.IsReady():\r
453 BuildTask._ReadyQueue[BuildObject] = BuildTask._PendingQueue.pop(BuildObject)\r
454 BuildTask._PendingQueueLock.release()\r
455\r
456 # launch build thread until the maximum number of threads is reached\r
457 while not BuildTask._ErrorFlag.isSet():\r
458 # empty ready queue, do nothing further\r
459 if len(BuildTask._ReadyQueue) == 0:\r
460 break\r
461\r
462 # wait for active thread(s) exit\r
463 BuildTask._Thread.acquire(True)\r
464\r
465 # start a new build thread\r
ccaa7754 466 Bo, Bt = BuildTask._ReadyQueue.popitem()\r
52302d4d
LG
467\r
468 # move into running queue\r
469 BuildTask._RunningQueueLock.acquire()\r
470 BuildTask._RunningQueue[Bo] = Bt\r
471 BuildTask._RunningQueueLock.release()\r
472\r
473 Bt.Start()\r
474 # avoid tense loop\r
475 time.sleep(0.01)\r
476\r
477 # avoid tense loop\r
478 time.sleep(0.01)\r
479\r
480 # wait for all running threads exit\r
481 if BuildTask._ErrorFlag.isSet():\r
482 EdkLogger.quiet("\nWaiting for all build threads exit...")\r
483 # while not BuildTask._ErrorFlag.isSet() and \\r
484 while len(BuildTask._RunningQueue) > 0:\r
485 EdkLogger.verbose("Waiting for thread ending...(%d)" % len(BuildTask._RunningQueue))\r
8252e6bf 486 EdkLogger.debug(EdkLogger.DEBUG_8, "Threads [%s]" % ", ".join(Th.getName() for Th in threading.enumerate()))\r
52302d4d
LG
487 # avoid tense loop\r
488 time.sleep(0.1)\r
5b0671c1 489 except BaseException as X:\r
52302d4d 490 #\r
fb0b35e0 491 # TRICK: hide the output of threads left running, so that the user can\r
52302d4d
LG
492 # catch the error message easily\r
493 #\r
494 EdkLogger.SetLevel(EdkLogger.ERROR)\r
495 BuildTask._ErrorFlag.set()\r
496 BuildTask._ErrorMessage = "build thread scheduler error\n\t%s" % str(X)\r
497\r
498 BuildTask._PendingQueue.clear()\r
499 BuildTask._ReadyQueue.clear()\r
500 BuildTask._RunningQueue.clear()\r
501 BuildTask._TaskQueue.clear()\r
502 BuildTask._SchedulerStopped.set()\r
503\r
504 ## Wait for all running method exit\r
505 #\r
506 @staticmethod\r
507 def WaitForComplete():\r
508 BuildTask._SchedulerStopped.wait()\r
509\r
510 ## Check if the scheduler is running or not\r
511 #\r
512 @staticmethod\r
513 def IsOnGoing():\r
514 return not BuildTask._SchedulerStopped.isSet()\r
515\r
516 ## Abort the build\r
517 @staticmethod\r
518 def Abort():\r
519 if BuildTask.IsOnGoing():\r
520 BuildTask._ErrorFlag.set()\r
521 BuildTask.WaitForComplete()\r
522\r
523 ## Check if there's error in running thread\r
524 #\r
525 # Since the main thread cannot catch exceptions in other thread, we have to\r
526 # use threading.Event to communicate this formation to main thread.\r
527 #\r
528 @staticmethod\r
529 def HasError():\r
530 return BuildTask._ErrorFlag.isSet()\r
531\r
532 ## Get error message in running thread\r
533 #\r
534 # Since the main thread cannot catch exceptions in other thread, we have to\r
535 # use a static variable to communicate this message to main thread.\r
536 #\r
537 @staticmethod\r
538 def GetErrorMessage():\r
539 return BuildTask._ErrorMessage\r
540\r
541 ## Factory method to create a BuildTask object\r
542 #\r
543 # This method will check if a module is building or has been built. And if\r
544 # true, just return the associated BuildTask object in the _TaskQueue. If\r
545 # not, create and return a new BuildTask object. The new BuildTask object\r
546 # will be appended to the _PendingQueue for scheduling later.\r
547 #\r
548 # @param BuildItem A BuildUnit object representing a build object\r
549 # @param Dependency The dependent build object of BuildItem\r
550 #\r
551 @staticmethod\r
552 def New(BuildItem, Dependency=None):\r
553 if BuildItem in BuildTask._TaskQueue:\r
554 Bt = BuildTask._TaskQueue[BuildItem]\r
555 return Bt\r
556\r
557 Bt = BuildTask()\r
558 Bt._Init(BuildItem, Dependency)\r
559 BuildTask._TaskQueue[BuildItem] = Bt\r
560\r
561 BuildTask._PendingQueueLock.acquire()\r
562 BuildTask._PendingQueue[BuildItem] = Bt\r
563 BuildTask._PendingQueueLock.release()\r
564\r
565 return Bt\r
566\r
567 ## The real constructor of BuildTask\r
568 #\r
569 # @param BuildItem A BuildUnit object representing a build object\r
570 # @param Dependency The dependent build object of BuildItem\r
571 #\r
572 def _Init(self, BuildItem, Dependency=None):\r
573 self.BuildItem = BuildItem\r
574\r
575 self.DependencyList = []\r
4231a819 576 if Dependency is None:\r
52302d4d
LG
577 Dependency = BuildItem.Dependency\r
578 else:\r
579 Dependency.extend(BuildItem.Dependency)\r
580 self.AddDependency(Dependency)\r
581 # flag indicating build completes, used to avoid unnecessary re-build\r
582 self.CompleteFlag = False\r
583\r
584 ## Check if all dependent build tasks are completed or not\r
585 #\r
586 def IsReady(self):\r
587 ReadyFlag = True\r
588 for Dep in self.DependencyList:\r
589 if Dep.CompleteFlag == True:\r
590 continue\r
591 ReadyFlag = False\r
592 break\r
593\r
594 return ReadyFlag\r
595\r
596 ## Add dependent build task\r
597 #\r
598 # @param Dependency The list of dependent build objects\r
599 #\r
600 def AddDependency(self, Dependency):\r
601 for Dep in Dependency:\r
97fa0ee9
YL
602 if not Dep.BuildObject.IsBinaryModule:\r
603 self.DependencyList.append(BuildTask.New(Dep)) # BuildTask list\r
52302d4d
LG
604\r
605 ## The thread wrapper of LaunchCommand function\r
606 #\r
607 # @param Command A list or string contains the call of the command\r
608 # @param WorkingDir The directory in which the program will be running\r
609 #\r
610 def _CommandThread(self, Command, WorkingDir):\r
611 try:\r
1b8eca8b 612 self.BuildItem.BuildObject.BuildTime = LaunchCommand(Command, WorkingDir)\r
52302d4d
LG
613 self.CompleteFlag = True\r
614 except:\r
615 #\r
fb0b35e0 616 # TRICK: hide the output of threads left running, so that the user can\r
52302d4d
LG
617 # catch the error message easily\r
618 #\r
619 if not BuildTask._ErrorFlag.isSet():\r
620 GlobalData.gBuildingModule = "%s [%s, %s, %s]" % (str(self.BuildItem.BuildObject),\r
621 self.BuildItem.BuildObject.Arch,\r
622 self.BuildItem.BuildObject.ToolChain,\r
623 self.BuildItem.BuildObject.BuildTarget\r
624 )\r
625 EdkLogger.SetLevel(EdkLogger.ERROR)\r
626 BuildTask._ErrorFlag.set()\r
627 BuildTask._ErrorMessage = "%s broken\n %s [%s]" % \\r
628 (threading.currentThread().getName(), Command, WorkingDir)\r
629 # indicate there's a thread is available for another build task\r
630 BuildTask._RunningQueueLock.acquire()\r
631 BuildTask._RunningQueue.pop(self.BuildItem)\r
632 BuildTask._RunningQueueLock.release()\r
633 BuildTask._Thread.release()\r
634\r
635 ## Start build task thread\r
636 #\r
637 def Start(self):\r
638 EdkLogger.quiet("Building ... %s" % repr(self.BuildItem))\r
639 Command = self.BuildItem.BuildCommand + [self.BuildItem.Target]\r
640 self.BuildTread = Thread(target=self._CommandThread, args=(Command, self.BuildItem.WorkingDir))\r
641 self.BuildTread.setName("build thread")\r
642 self.BuildTread.setDaemon(False)\r
643 self.BuildTread.start()\r
644\r
645## The class contains the information related to EFI image\r
646#\r
647class PeImageInfo():\r
648 ## Constructor\r
649 #\r
650 # Constructor will load all required image information.\r
651 #\r
4afd3d04 652 # @param BaseName The full file path of image.\r
52302d4d
LG
653 # @param Guid The GUID for image.\r
654 # @param Arch Arch of this image.\r
f3decdc3
LG
655 # @param OutputDir The output directory for image.\r
656 # @param DebugDir The debug directory for image.\r
52302d4d
LG
657 # @param ImageClass PeImage Information\r
658 #\r
f3decdc3 659 def __init__(self, BaseName, Guid, Arch, OutputDir, DebugDir, ImageClass):\r
52302d4d
LG
660 self.BaseName = BaseName\r
661 self.Guid = Guid\r
662 self.Arch = Arch\r
f3decdc3
LG
663 self.OutputDir = OutputDir\r
664 self.DebugDir = DebugDir\r
52302d4d 665 self.Image = ImageClass\r
b3e94a06 666 self.Image.Size = (self.Image.Size // 0x1000 + 1) * 0x1000\r
52302d4d
LG
667\r
668## The class implementing the EDK2 build process\r
669#\r
670# The build process includes:\r
671# 1. Load configuration from target.txt and tools_def.txt in $(WORKSPACE)/Conf\r
672# 2. Parse DSC file of active platform\r
673# 3. Parse FDF file if any\r
674# 4. Establish build database, including parse all other files (module, package)\r
675# 5. Create AutoGen files (C code file, depex file, makefile) if necessary\r
676# 6. Call build command\r
677#\r
678class Build():\r
679 ## Constructor\r
680 #\r
681 # Constructor will load all necessary configurations, parse platform, modules\r
682 # and packages and the establish a database for AutoGen.\r
683 #\r
684 # @param Target The build command target, one of gSupportedTarget\r
685 # @param WorkspaceDir The directory of workspace\r
0d2711a6
LG
686 # @param BuildOptions Build options passed from command line\r
687 #\r
688 def __init__(self, Target, WorkspaceDir, BuildOptions):\r
689 self.WorkspaceDir = WorkspaceDir\r
52302d4d 690 self.Target = Target\r
0d2711a6
LG
691 self.PlatformFile = BuildOptions.PlatformFile\r
692 self.ModuleFile = BuildOptions.ModuleFile\r
693 self.ArchList = BuildOptions.TargetArch\r
694 self.ToolChainList = BuildOptions.ToolChain\r
695 self.BuildTargetList= BuildOptions.BuildTarget\r
696 self.Fdf = BuildOptions.FdfFile\r
697 self.FdList = BuildOptions.RomImage\r
698 self.FvList = BuildOptions.FvImage\r
699 self.CapList = BuildOptions.CapName\r
700 self.SilentMode = BuildOptions.SilentMode\r
701 self.ThreadNumber = BuildOptions.ThreadNumber\r
702 self.SkipAutoGen = BuildOptions.SkipAutoGen\r
703 self.Reparse = BuildOptions.Reparse\r
704 self.SkuId = BuildOptions.SkuId\r
e651d06c
LG
705 if self.SkuId:\r
706 GlobalData.gSKUID_CMD = self.SkuId\r
97fa0ee9 707 self.ConfDirectory = BuildOptions.ConfDirectory\r
52302d4d 708 self.SpawnMode = True\r
0d2711a6 709 self.BuildReport = BuildReport(BuildOptions.ReportFile, BuildOptions.ReportType)\r
52302d4d
LG
710 self.TargetTxt = TargetTxtClassObject()\r
711 self.ToolDef = ToolDefClassObject()\r
1b8eca8b
YZ
712 self.AutoGenTime = 0\r
713 self.MakeTime = 0\r
714 self.GenFdsTime = 0\r
b854e2bf 715 GlobalData.BuildOptionPcd = BuildOptions.OptionPcd if BuildOptions.OptionPcd else []\r
fae62ff2
HC
716 #Set global flag for build mode\r
717 GlobalData.gIgnoreSource = BuildOptions.IgnoreSources\r
36d083ef
YZ
718 GlobalData.gUseHashCache = BuildOptions.UseHashCache\r
719 GlobalData.gBinCacheDest = BuildOptions.BinCacheDest\r
720 GlobalData.gBinCacheSource = BuildOptions.BinCacheSource\r
37de70b7 721 GlobalData.gEnableGenfdsMultiThread = BuildOptions.GenfdsMultiThread\r
36d083ef
YZ
722\r
723 if GlobalData.gBinCacheDest and not GlobalData.gUseHashCache:\r
724 EdkLogger.error("build", OPTION_NOT_SUPPORTED, ExtraData="--binary-destination must be used together with --hash.")\r
725\r
726 if GlobalData.gBinCacheSource and not GlobalData.gUseHashCache:\r
727 EdkLogger.error("build", OPTION_NOT_SUPPORTED, ExtraData="--binary-source must be used together with --hash.")\r
728\r
729 if GlobalData.gBinCacheDest and GlobalData.gBinCacheSource:\r
730 EdkLogger.error("build", OPTION_NOT_SUPPORTED, ExtraData="--binary-destination can not be used together with --binary-source.")\r
731\r
732 if GlobalData.gBinCacheSource:\r
733 BinCacheSource = os.path.normpath(GlobalData.gBinCacheSource)\r
734 if not os.path.isabs(BinCacheSource):\r
735 BinCacheSource = mws.join(self.WorkspaceDir, BinCacheSource)\r
736 GlobalData.gBinCacheSource = BinCacheSource\r
f21547ff 737 else:\r
4231a819 738 if GlobalData.gBinCacheSource is not None:\r
f21547ff 739 EdkLogger.error("build", OPTION_VALUE_INVALID, ExtraData="Invalid value of option --binary-source.")\r
36d083ef
YZ
740\r
741 if GlobalData.gBinCacheDest:\r
742 BinCacheDest = os.path.normpath(GlobalData.gBinCacheDest)\r
743 if not os.path.isabs(BinCacheDest):\r
744 BinCacheDest = mws.join(self.WorkspaceDir, BinCacheDest)\r
745 GlobalData.gBinCacheDest = BinCacheDest\r
f21547ff 746 else:\r
4231a819 747 if GlobalData.gBinCacheDest is not None:\r
f21547ff 748 EdkLogger.error("build", OPTION_VALUE_INVALID, ExtraData="Invalid value of option --binary-destination.")\r
97fa0ee9
YL
749\r
750 if self.ConfDirectory:\r
751 # Get alternate Conf location, if it is absolute, then just use the absolute directory name\r
752 ConfDirectoryPath = os.path.normpath(self.ConfDirectory)\r
753\r
754 if not os.path.isabs(ConfDirectoryPath):\r
755 # Since alternate directory name is not absolute, the alternate directory is located within the WORKSPACE\r
756 # This also handles someone specifying the Conf directory in the workspace. Using --conf=Conf\r
05cc51ad 757 ConfDirectoryPath = mws.join(self.WorkspaceDir, ConfDirectoryPath)\r
97fa0ee9 758 else:\r
00bcb5c2
YZ
759 if "CONF_PATH" in os.environ:\r
760 ConfDirectoryPath = os.path.normcase(os.path.normpath(os.environ["CONF_PATH"]))\r
761 else:\r
762 # Get standard WORKSPACE/Conf use the absolute path to the WORKSPACE/Conf\r
763 ConfDirectoryPath = mws.join(self.WorkspaceDir, 'Conf')\r
97fa0ee9
YL
764 GlobalData.gConfDirectory = ConfDirectoryPath\r
765 GlobalData.gDatabasePath = os.path.normpath(os.path.join(ConfDirectoryPath, GlobalData.gDatabasePath))\r
766\r
2f818ed0 767 self.Db = WorkspaceDatabase()\r
97fa0ee9
YL
768 self.BuildDatabase = self.Db.BuildObject\r
769 self.Platform = None\r
40b4e21d 770 self.ToolChainFamily = None\r
52302d4d 771 self.LoadFixAddress = 0\r
0d2711a6 772 self.UniFlag = BuildOptions.Flag\r
a0a2cd1e 773 self.BuildModules = []\r
83397f95 774 self.HashSkipModules = []\r
f0dc69e6
YZ
775 self.Db_Flag = False\r
776 self.LaunchPrebuildFlag = False\r
ccaa7754 777 self.PlatformBuildPath = os.path.join(GlobalData.gConfDirectory, '.cache', '.PlatformBuild')\r
725cdb8f
YZ
778 if BuildOptions.CommandLength:\r
779 GlobalData.gCommandMaxLength = BuildOptions.CommandLength\r
780\r
e56468c0 781 # print dot character during doing some time-consuming work\r
52302d4d 782 self.Progress = Utils.Progressor()\r
52302d4d 783 # print current build environment and configuration\r
0d2711a6 784 EdkLogger.quiet("%-16s = %s" % ("WORKSPACE", os.environ["WORKSPACE"]))\r
f25da33d 785 if "PACKAGES_PATH" in os.environ:\r
f7496d71 786 # WORKSPACE env has been converted before. Print the same path style with WORKSPACE env.\r
f25da33d 787 EdkLogger.quiet("%-16s = %s" % ("PACKAGES_PATH", os.path.normcase(os.path.normpath(os.environ["PACKAGES_PATH"]))))\r
0d2711a6 788 EdkLogger.quiet("%-16s = %s" % ("EDK_TOOLS_PATH", os.environ["EDK_TOOLS_PATH"]))\r
f25da33d 789 if "EDK_TOOLS_BIN" in os.environ:\r
f7496d71 790 # Print the same path style with WORKSPACE env.\r
f25da33d 791 EdkLogger.quiet("%-16s = %s" % ("EDK_TOOLS_BIN", os.path.normcase(os.path.normpath(os.environ["EDK_TOOLS_BIN"]))))\r
00bcb5c2 792 EdkLogger.quiet("%-16s = %s" % ("CONF_PATH", GlobalData.gConfDirectory))\r
fd2d7400
ZF
793 if "PYTHON3_ENABLE" in os.environ:\r
794 PYTHON3_ENABLE = os.environ["PYTHON3_ENABLE"]\r
795 if PYTHON3_ENABLE != "TRUE":\r
796 PYTHON3_ENABLE = "FALSE"\r
797 EdkLogger.quiet("%-16s = %s" % ("PYTHON3_ENABLE", PYTHON3_ENABLE))\r
7aef7b7c
LG
798 if "PYTHON_COMMAND" in os.environ:\r
799 EdkLogger.quiet("%-16s = %s" % ("PYTHON_COMMAND", os.environ["PYTHON_COMMAND"]))\r
f0dc69e6
YZ
800 self.InitPreBuild()\r
801 self.InitPostBuild()\r
af9c4e5e
MK
802 if self.Prebuild:\r
803 EdkLogger.quiet("%-16s = %s" % ("PREBUILD", self.Prebuild))\r
804 if self.Postbuild:\r
805 EdkLogger.quiet("%-16s = %s" % ("POSTBUILD", self.Postbuild))\r
806 if self.Prebuild:\r
f0dc69e6 807 self.LaunchPrebuild()\r
a0c9ce31
YZ
808 self.TargetTxt = TargetTxtClassObject()\r
809 self.ToolDef = ToolDefClassObject()\r
f0dc69e6
YZ
810 if not (self.LaunchPrebuildFlag and os.path.exists(self.PlatformBuildPath)):\r
811 self.InitBuild()\r
52302d4d 812\r
f0dc69e6 813 EdkLogger.info("")\r
52302d4d 814 os.chdir(self.WorkspaceDir)\r
52302d4d
LG
815\r
816 ## Load configuration\r
817 #\r
818 # This method will parse target.txt and get the build configurations.\r
819 #\r
820 def LoadConfiguration(self):\r
821 #\r
822 # Check target.txt and tools_def.txt and Init them\r
823 #\r
97fa0ee9 824 BuildConfigurationFile = os.path.normpath(os.path.join(GlobalData.gConfDirectory, gBuildConfiguration))\r
52302d4d
LG
825 if os.path.isfile(BuildConfigurationFile) == True:\r
826 StatusCode = self.TargetTxt.LoadTargetTxtFile(BuildConfigurationFile)\r
827\r
938cf4c3 828 ToolDefinitionFile = self.TargetTxt.TargetTxtDictionary[TAB_TAT_DEFINES_TOOL_CHAIN_CONF]\r
52302d4d
LG
829 if ToolDefinitionFile == '':\r
830 ToolDefinitionFile = gToolsDefinition\r
05cc51ad 831 ToolDefinitionFile = os.path.normpath(mws.join(self.WorkspaceDir, 'Conf', ToolDefinitionFile))\r
52302d4d
LG
832 if os.path.isfile(ToolDefinitionFile) == True:\r
833 StatusCode = self.ToolDef.LoadToolDefFile(ToolDefinitionFile)\r
834 else:\r
835 EdkLogger.error("build", FILE_NOT_FOUND, ExtraData=ToolDefinitionFile)\r
836 else:\r
837 EdkLogger.error("build", FILE_NOT_FOUND, ExtraData=BuildConfigurationFile)\r
838\r
839 # if no ARCH given in command line, get it from target.txt\r
0d2711a6 840 if not self.ArchList:\r
938cf4c3 841 self.ArchList = self.TargetTxt.TargetTxtDictionary[TAB_TAT_DEFINES_TARGET_ARCH]\r
0d2711a6 842 self.ArchList = tuple(self.ArchList)\r
52302d4d
LG
843\r
844 # if no build target given in command line, get it from target.txt\r
0d2711a6 845 if not self.BuildTargetList:\r
938cf4c3 846 self.BuildTargetList = self.TargetTxt.TargetTxtDictionary[TAB_TAT_DEFINES_TARGET]\r
52302d4d
LG
847\r
848 # if no tool chain given in command line, get it from target.txt\r
0d2711a6 849 if not self.ToolChainList:\r
938cf4c3 850 self.ToolChainList = self.TargetTxt.TargetTxtDictionary[TAB_TAT_DEFINES_TOOL_CHAIN_TAG]\r
4231a819 851 if self.ToolChainList is None or len(self.ToolChainList) == 0:\r
52302d4d
LG
852 EdkLogger.error("build", RESOURCE_NOT_AVAILABLE, ExtraData="No toolchain given. Don't know how to build.\n")\r
853\r
854 # check if the tool chains are defined or not\r
855 NewToolChainList = []\r
856 for ToolChain in self.ToolChainList:\r
857 if ToolChain not in self.ToolDef.ToolsDefTxtDatabase[TAB_TOD_DEFINES_TOOL_CHAIN_TAG]:\r
858 EdkLogger.warn("build", "Tool chain [%s] is not defined" % ToolChain)\r
859 else:\r
860 NewToolChainList.append(ToolChain)\r
861 # if no tool chain available, break the build\r
862 if len(NewToolChainList) == 0:\r
863 EdkLogger.error("build", RESOURCE_NOT_AVAILABLE,\r
864 ExtraData="[%s] not defined. No toolchain available for build!\n" % ", ".join(self.ToolChainList))\r
865 else:\r
866 self.ToolChainList = NewToolChainList\r
867\r
40b4e21d
YZ
868 ToolChainFamily = []\r
869 ToolDefinition = self.ToolDef.ToolsDefTxtDatabase\r
870 for Tool in self.ToolChainList:\r
871 if TAB_TOD_DEFINES_FAMILY not in ToolDefinition or Tool not in ToolDefinition[TAB_TOD_DEFINES_FAMILY] \\r
872 or not ToolDefinition[TAB_TOD_DEFINES_FAMILY][Tool]:\r
688c7d21 873 EdkLogger.warn("build", "No tool chain family found in configuration for %s. Default to MSFT." % Tool)\r
94c04559 874 ToolChainFamily.append(TAB_COMPILER_MSFT)\r
40b4e21d
YZ
875 else:\r
876 ToolChainFamily.append(ToolDefinition[TAB_TOD_DEFINES_FAMILY][Tool])\r
877 self.ToolChainFamily = ToolChainFamily\r
878\r
4231a819 879 if self.ThreadNumber is None:\r
938cf4c3 880 self.ThreadNumber = self.TargetTxt.TargetTxtDictionary[TAB_TAT_DEFINES_MAX_CONCURRENT_THREAD_NUMBER]\r
52302d4d
LG
881 if self.ThreadNumber == '':\r
882 self.ThreadNumber = 0\r
883 else:\r
884 self.ThreadNumber = int(self.ThreadNumber, 0)\r
885\r
886 if self.ThreadNumber == 0:\r
29af38b0
YF
887 try:\r
888 self.ThreadNumber = multiprocessing.cpu_count()\r
889 except (ImportError, NotImplementedError):\r
890 self.ThreadNumber = 1\r
52302d4d
LG
891\r
892 if not self.PlatformFile:\r
938cf4c3 893 PlatformFile = self.TargetTxt.TargetTxtDictionary[TAB_TAT_DEFINES_ACTIVE_PLATFORM]\r
52302d4d
LG
894 if not PlatformFile:\r
895 # Try to find one in current directory\r
896 WorkingDirectory = os.getcwd()\r
897 FileList = glob.glob(os.path.normpath(os.path.join(WorkingDirectory, '*.dsc')))\r
898 FileNum = len(FileList)\r
899 if FileNum >= 2:\r
900 EdkLogger.error("build", OPTION_MISSING,\r
901 ExtraData="There are %d DSC files in %s. Use '-p' to specify one.\n" % (FileNum, WorkingDirectory))\r
902 elif FileNum == 1:\r
903 PlatformFile = FileList[0]\r
904 else:\r
905 EdkLogger.error("build", RESOURCE_NOT_AVAILABLE,\r
906 ExtraData="No active platform specified in target.txt or command line! Nothing can be built.\n")\r
907\r
908 self.PlatformFile = PathClass(NormFile(PlatformFile, self.WorkspaceDir), self.WorkspaceDir)\r
52302d4d
LG
909\r
910 ## Initialize build configuration\r
911 #\r
912 # This method will parse DSC file and merge the configurations from\r
913 # command line and target.txt, then get the final build configurations.\r
914 #\r
915 def InitBuild(self):\r
0d2711a6 916 # parse target.txt, tools_def.txt, and platform file\r
4afd3d04 917 self.LoadConfiguration()\r
0d2711a6
LG
918\r
919 # Allow case-insensitive for those from command line or configuration file\r
920 ErrorCode, ErrorInfo = self.PlatformFile.Validate(".dsc", False)\r
52302d4d
LG
921 if ErrorCode != 0:\r
922 EdkLogger.error("build", ErrorCode, ExtraData=ErrorInfo)\r
923\r
f0dc69e6
YZ
924\r
925 def InitPreBuild(self):\r
926 self.LoadConfiguration()\r
d429fcd0
YZ
927 ErrorCode, ErrorInfo = self.PlatformFile.Validate(".dsc", False)\r
928 if ErrorCode != 0:\r
929 EdkLogger.error("build", ErrorCode, ExtraData=ErrorInfo)\r
f0dc69e6
YZ
930 if self.BuildTargetList:\r
931 GlobalData.gGlobalDefines['TARGET'] = self.BuildTargetList[0]\r
932 if self.ArchList:\r
933 GlobalData.gGlobalDefines['ARCH'] = self.ArchList[0]\r
934 if self.ToolChainList:\r
935 GlobalData.gGlobalDefines['TOOLCHAIN'] = self.ToolChainList[0]\r
936 GlobalData.gGlobalDefines['TOOL_CHAIN_TAG'] = self.ToolChainList[0]\r
40b4e21d
YZ
937 if self.ToolChainFamily:\r
938 GlobalData.gGlobalDefines['FAMILY'] = self.ToolChainFamily[0]\r
9eb87141 939 if 'PREBUILD' in GlobalData.gCommandLineDefines:\r
f0dc69e6
YZ
940 self.Prebuild = GlobalData.gCommandLineDefines.get('PREBUILD')\r
941 else:\r
f0dc69e6 942 self.Db_Flag = True\r
71cac3f7 943 Platform = self.Db.MapPlatform(str(self.PlatformFile))\r
f0dc69e6
YZ
944 self.Prebuild = str(Platform.Prebuild)\r
945 if self.Prebuild:\r
af9c4e5e
MK
946 PrebuildList = []\r
947 #\r
948 # Evaluate all arguments and convert arguments that are WORKSPACE\r
949 # relative paths to absolute paths. Filter arguments that look like\r
950 # flags or do not follow the file/dir naming rules to avoid false\r
951 # positives on this conversion.\r
952 #\r
953 for Arg in self.Prebuild.split():\r
954 #\r
955 # Do not modify Arg if it looks like a flag or an absolute file path\r
956 #\r
957 if Arg.startswith('-') or os.path.isabs(Arg):\r
958 PrebuildList.append(Arg)\r
959 continue\r
960 #\r
961 # Do not modify Arg if it does not look like a Workspace relative\r
962 # path that starts with a valid package directory name\r
963 #\r
964 if not Arg[0].isalpha() or os.path.dirname(Arg) == '':\r
965 PrebuildList.append(Arg)\r
966 continue\r
967 #\r
968 # If Arg looks like a WORKSPACE relative path, then convert to an\r
969 # absolute path and check to see if the file exists.\r
970 #\r
971 Temp = mws.join(self.WorkspaceDir, Arg)\r
972 if os.path.isfile(Temp):\r
973 Arg = Temp\r
974 PrebuildList.append(Arg)\r
975 self.Prebuild = ' '.join(PrebuildList)\r
976 self.Prebuild += self.PassCommandOption(self.BuildTargetList, self.ArchList, self.ToolChainList, self.PlatformFile, self.Target)\r
52302d4d 977\r
f0dc69e6 978 def InitPostBuild(self):\r
9eb87141 979 if 'POSTBUILD' in GlobalData.gCommandLineDefines:\r
f0dc69e6
YZ
980 self.Postbuild = GlobalData.gCommandLineDefines.get('POSTBUILD')\r
981 else:\r
71cac3f7 982 Platform = self.Db.MapPlatform(str(self.PlatformFile))\r
f0dc69e6
YZ
983 self.Postbuild = str(Platform.Postbuild)\r
984 if self.Postbuild:\r
af9c4e5e
MK
985 PostbuildList = []\r
986 #\r
987 # Evaluate all arguments and convert arguments that are WORKSPACE\r
988 # relative paths to absolute paths. Filter arguments that look like\r
989 # flags or do not follow the file/dir naming rules to avoid false\r
990 # positives on this conversion.\r
991 #\r
992 for Arg in self.Postbuild.split():\r
993 #\r
994 # Do not modify Arg if it looks like a flag or an absolute file path\r
995 #\r
996 if Arg.startswith('-') or os.path.isabs(Arg):\r
997 PostbuildList.append(Arg)\r
998 continue\r
999 #\r
1000 # Do not modify Arg if it does not look like a Workspace relative\r
1001 # path that starts with a valid package directory name\r
1002 #\r
1003 if not Arg[0].isalpha() or os.path.dirname(Arg) == '':\r
1004 PostbuildList.append(Arg)\r
1005 continue\r
1006 #\r
1007 # If Arg looks like a WORKSPACE relative path, then convert to an\r
1008 # absolute path and check to see if the file exists.\r
1009 #\r
1010 Temp = mws.join(self.WorkspaceDir, Arg)\r
1011 if os.path.isfile(Temp):\r
1012 Arg = Temp\r
1013 PostbuildList.append(Arg)\r
1014 self.Postbuild = ' '.join(PostbuildList)\r
1015 self.Postbuild += self.PassCommandOption(self.BuildTargetList, self.ArchList, self.ToolChainList, self.PlatformFile, self.Target)\r
1016\r
1017 def PassCommandOption(self, BuildTarget, TargetArch, ToolChain, PlatformFile, Target):\r
f0dc69e6
YZ
1018 BuildStr = ''\r
1019 if GlobalData.gCommand and isinstance(GlobalData.gCommand, list):\r
1020 BuildStr += ' ' + ' '.join(GlobalData.gCommand)\r
1021 TargetFlag = False\r
1022 ArchFlag = False\r
1023 ToolChainFlag = False\r
af9c4e5e 1024 PlatformFileFlag = False\r
f0dc69e6
YZ
1025\r
1026 if GlobalData.gOptions and not GlobalData.gOptions.BuildTarget:\r
1027 TargetFlag = True\r
1028 if GlobalData.gOptions and not GlobalData.gOptions.TargetArch:\r
1029 ArchFlag = True\r
1030 if GlobalData.gOptions and not GlobalData.gOptions.ToolChain:\r
1031 ToolChainFlag = True\r
af9c4e5e
MK
1032 if GlobalData.gOptions and not GlobalData.gOptions.PlatformFile:\r
1033 PlatformFileFlag = True\r
f0dc69e6
YZ
1034\r
1035 if TargetFlag and BuildTarget:\r
1036 if isinstance(BuildTarget, list) or isinstance(BuildTarget, tuple):\r
1037 BuildStr += ' -b ' + ' -b '.join(BuildTarget)\r
1038 elif isinstance(BuildTarget, str):\r
1039 BuildStr += ' -b ' + BuildTarget\r
1040 if ArchFlag and TargetArch:\r
1041 if isinstance(TargetArch, list) or isinstance(TargetArch, tuple):\r
1042 BuildStr += ' -a ' + ' -a '.join(TargetArch)\r
1043 elif isinstance(TargetArch, str):\r
1044 BuildStr += ' -a ' + TargetArch\r
1045 if ToolChainFlag and ToolChain:\r
1046 if isinstance(ToolChain, list) or isinstance(ToolChain, tuple):\r
1047 BuildStr += ' -t ' + ' -t '.join(ToolChain)\r
1048 elif isinstance(ToolChain, str):\r
1049 BuildStr += ' -t ' + ToolChain\r
af9c4e5e
MK
1050 if PlatformFileFlag and PlatformFile:\r
1051 if isinstance(PlatformFile, list) or isinstance(PlatformFile, tuple):\r
1052 BuildStr += ' -p ' + ' -p '.join(PlatformFile)\r
1053 elif isinstance(PlatformFile, str):\r
1054 BuildStr += ' -p' + PlatformFile\r
1055 BuildStr += ' --conf=' + GlobalData.gConfDirectory\r
1056 if Target:\r
1057 BuildStr += ' ' + Target\r
f0dc69e6
YZ
1058\r
1059 return BuildStr\r
1060\r
1061 def LaunchPrebuild(self):\r
1062 if self.Prebuild:\r
1063 EdkLogger.info("\n- Prebuild Start -\n")\r
1064 self.LaunchPrebuildFlag = True\r
134bbe88
YZ
1065 #\r
1066 # The purpose of .PrebuildEnv file is capture environment variable settings set by the prebuild script\r
1067 # and preserve them for the rest of the main build step, because the child process environment will\r
1068 # evaporate as soon as it exits, we cannot get it in build step.\r
1069 #\r
ccaa7754 1070 PrebuildEnvFile = os.path.join(GlobalData.gConfDirectory, '.cache', '.PrebuildEnv')\r
f0dc69e6
YZ
1071 if os.path.isfile(PrebuildEnvFile):\r
1072 os.remove(PrebuildEnvFile)\r
1073 if os.path.isfile(self.PlatformBuildPath):\r
1074 os.remove(self.PlatformBuildPath)\r
1075 if sys.platform == "win32":\r
1076 args = ' && '.join((self.Prebuild, 'set > ' + PrebuildEnvFile))\r
b926f2f2 1077 Process = Popen(args, stdout=PIPE, stderr=PIPE, shell=True)\r
f0dc69e6
YZ
1078 else:\r
1079 args = ' && '.join((self.Prebuild, 'env > ' + PrebuildEnvFile))\r
34816e7e 1080 Process = Popen(args, stdout=PIPE, stderr=PIPE, shell=True)\r
f0dc69e6
YZ
1081\r
1082 # launch two threads to read the STDOUT and STDERR\r
1083 EndOfProcedure = Event()\r
1084 EndOfProcedure.clear()\r
1085 if Process.stdout:\r
1086 StdOutThread = Thread(target=ReadMessage, args=(Process.stdout, EdkLogger.info, EndOfProcedure))\r
1087 StdOutThread.setName("STDOUT-Redirector")\r
1088 StdOutThread.setDaemon(False)\r
1089 StdOutThread.start()\r
1090\r
1091 if Process.stderr:\r
1092 StdErrThread = Thread(target=ReadMessage, args=(Process.stderr, EdkLogger.quiet, EndOfProcedure))\r
1093 StdErrThread.setName("STDERR-Redirector")\r
1094 StdErrThread.setDaemon(False)\r
1095 StdErrThread.start()\r
1096 # waiting for program exit\r
1097 Process.wait()\r
1098\r
1099 if Process.stdout:\r
1100 StdOutThread.join()\r
1101 if Process.stderr:\r
1102 StdErrThread.join()\r
1103 if Process.returncode != 0 :\r
1104 EdkLogger.error("Prebuild", PREBUILD_ERROR, 'Prebuild process is not success!')\r
1105\r
1106 if os.path.exists(PrebuildEnvFile):\r
1107 f = open(PrebuildEnvFile)\r
1108 envs = f.readlines()\r
1109 f.close()\r
2f28dca1
ZF
1110 envs = [l.split("=", 1) for l in envs ]\r
1111 envs = [[I.strip() for I in item] for item in envs if len(item) == 2]\r
f0dc69e6
YZ
1112 os.environ.update(dict(envs))\r
1113 EdkLogger.info("\n- Prebuild Done -\n")\r
1114\r
91048b0d 1115 def LaunchPostbuild(self):\r
f0dc69e6
YZ
1116 if self.Postbuild:\r
1117 EdkLogger.info("\n- Postbuild Start -\n")\r
1118 if sys.platform == "win32":\r
b926f2f2 1119 Process = Popen(self.Postbuild, stdout=PIPE, stderr=PIPE, shell=True)\r
f0dc69e6 1120 else:\r
34816e7e 1121 Process = Popen(self.Postbuild, stdout=PIPE, stderr=PIPE, shell=True)\r
f0dc69e6
YZ
1122 # launch two threads to read the STDOUT and STDERR\r
1123 EndOfProcedure = Event()\r
1124 EndOfProcedure.clear()\r
1125 if Process.stdout:\r
1126 StdOutThread = Thread(target=ReadMessage, args=(Process.stdout, EdkLogger.info, EndOfProcedure))\r
1127 StdOutThread.setName("STDOUT-Redirector")\r
1128 StdOutThread.setDaemon(False)\r
1129 StdOutThread.start()\r
1130\r
1131 if Process.stderr:\r
1132 StdErrThread = Thread(target=ReadMessage, args=(Process.stderr, EdkLogger.quiet, EndOfProcedure))\r
1133 StdErrThread.setName("STDERR-Redirector")\r
1134 StdErrThread.setDaemon(False)\r
1135 StdErrThread.start()\r
1136 # waiting for program exit\r
1137 Process.wait()\r
1138\r
1139 if Process.stdout:\r
1140 StdOutThread.join()\r
1141 if Process.stderr:\r
1142 StdErrThread.join()\r
1143 if Process.returncode != 0 :\r
1144 EdkLogger.error("Postbuild", POSTBUILD_ERROR, 'Postbuild process is not success!')\r
1145 EdkLogger.info("\n- Postbuild Done -\n")\r
52302d4d
LG
1146 ## Build a module or platform\r
1147 #\r
08dd311f 1148 # Create autogen code and makefile for a module or platform, and the launch\r
52302d4d
LG
1149 # "make" command to build it\r
1150 #\r
1151 # @param Target The target of build command\r
1152 # @param Platform The platform file\r
1153 # @param Module The module file\r
1154 # @param BuildTarget The name of build target, one of "DEBUG", "RELEASE"\r
1155 # @param ToolChain The name of toolchain to build\r
1156 # @param Arch The arch of the module/platform\r
1157 # @param CreateDepModuleCodeFile Flag used to indicate creating code\r
1158 # for dependent modules/Libraries\r
1159 # @param CreateDepModuleMakeFile Flag used to indicate creating makefile\r
1160 # for dependent modules/Libraries\r
1161 #\r
37de70b7 1162 def _BuildPa(self, Target, AutoGenObject, CreateDepsCodeFile=True, CreateDepsMakeFile=True, BuildModule=False, FfsCommand={}):\r
4231a819 1163 if AutoGenObject is None:\r
52302d4d
LG
1164 return False\r
1165\r
1166 # skip file generation for cleanxxx targets, run and fds target\r
1167 if Target not in ['clean', 'cleanlib', 'cleanall', 'run', 'fds']:\r
1168 # for target which must generate AutoGen code and makefile\r
1169 if not self.SkipAutoGen or Target == 'genc':\r
1170 self.Progress.Start("Generating code")\r
1171 AutoGenObject.CreateCodeFile(CreateDepsCodeFile)\r
1172 self.Progress.Stop("done!")\r
1173 if Target == "genc":\r
1174 return True\r
1175\r
1176 if not self.SkipAutoGen or Target == 'genmake':\r
1177 self.Progress.Start("Generating makefile")\r
37de70b7 1178 AutoGenObject.CreateMakeFile(CreateDepsMakeFile, FfsCommand)\r
52302d4d
LG
1179 self.Progress.Stop("done!")\r
1180 if Target == "genmake":\r
1181 return True\r
1182 else:\r
1183 # always recreate top/platform makefile when clean, just in case of inconsistency\r
1184 AutoGenObject.CreateCodeFile(False)\r
1185 AutoGenObject.CreateMakeFile(False)\r
1186\r
1187 if EdkLogger.GetLevel() == EdkLogger.QUIET:\r
1188 EdkLogger.quiet("Building ... %s" % repr(AutoGenObject))\r
1189\r
1190 BuildCommand = AutoGenObject.BuildCommand\r
4231a819 1191 if BuildCommand is None or len(BuildCommand) == 0:\r
0d2711a6
LG
1192 EdkLogger.error("build", OPTION_MISSING,\r
1193 "No build command found for this module. "\r
4afd3d04 1194 "Please check your setting of %s_%s_%s_MAKE_PATH in Conf/tools_def.txt file." %\r
0d2711a6
LG
1195 (AutoGenObject.BuildTarget, AutoGenObject.ToolChain, AutoGenObject.Arch),\r
1196 ExtraData=str(AutoGenObject))\r
52302d4d 1197\r
03af2753
HC
1198 makefile = GenMake.BuildFile(AutoGenObject)._FILE_NAME_[GenMake.gMakeType]\r
1199\r
03af2753
HC
1200 # run\r
1201 if Target == 'run':\r
997a5d1b 1202 RunDir = os.path.normpath(os.path.join(AutoGenObject.BuildDir, GlobalData.gGlobalDefines['ARCH']))\r
03af2753
HC
1203 Command = '.\SecMain'\r
1204 os.chdir(RunDir)\r
1205 LaunchCommand(Command, RunDir)\r
1206 return True\r
1207\r
1208 # build modules\r
1209 if BuildModule:\r
1210 BuildCommand = BuildCommand + [Target]\r
1211 LaunchCommand(BuildCommand, AutoGenObject.MakeFileDir)\r
a0a2cd1e 1212 self.CreateAsBuiltInf()\r
03af2753
HC
1213 return True\r
1214\r
1215 # build library\r
1216 if Target == 'libraries':\r
1217 for Lib in AutoGenObject.LibraryBuildDirectoryList:\r
1218 NewBuildCommand = BuildCommand + ['-f', os.path.normpath(os.path.join(Lib, makefile)), 'pbuild']\r
1219 LaunchCommand(NewBuildCommand, AutoGenObject.MakeFileDir)\r
1220 return True\r
1221\r
1222 # build module\r
1223 if Target == 'modules':\r
1224 for Lib in AutoGenObject.LibraryBuildDirectoryList:\r
1225 NewBuildCommand = BuildCommand + ['-f', os.path.normpath(os.path.join(Lib, makefile)), 'pbuild']\r
1226 LaunchCommand(NewBuildCommand, AutoGenObject.MakeFileDir)\r
1227 for Mod in AutoGenObject.ModuleBuildDirectoryList:\r
1228 NewBuildCommand = BuildCommand + ['-f', os.path.normpath(os.path.join(Mod, makefile)), 'pbuild']\r
1229 LaunchCommand(NewBuildCommand, AutoGenObject.MakeFileDir)\r
a0a2cd1e 1230 self.CreateAsBuiltInf()\r
03af2753
HC
1231 return True\r
1232\r
1233 # cleanlib\r
1234 if Target == 'cleanlib':\r
1235 for Lib in AutoGenObject.LibraryBuildDirectoryList:\r
1236 LibMakefile = os.path.normpath(os.path.join(Lib, makefile))\r
1237 if os.path.exists(LibMakefile):\r
1238 NewBuildCommand = BuildCommand + ['-f', LibMakefile, 'cleanall']\r
1239 LaunchCommand(NewBuildCommand, AutoGenObject.MakeFileDir)\r
1240 return True\r
1241\r
1242 # clean\r
1243 if Target == 'clean':\r
1244 for Mod in AutoGenObject.ModuleBuildDirectoryList:\r
1245 ModMakefile = os.path.normpath(os.path.join(Mod, makefile))\r
1246 if os.path.exists(ModMakefile):\r
1247 NewBuildCommand = BuildCommand + ['-f', ModMakefile, 'cleanall']\r
1248 LaunchCommand(NewBuildCommand, AutoGenObject.MakeFileDir)\r
1249 for Lib in AutoGenObject.LibraryBuildDirectoryList:\r
1250 LibMakefile = os.path.normpath(os.path.join(Lib, makefile))\r
1251 if os.path.exists(LibMakefile):\r
1252 NewBuildCommand = BuildCommand + ['-f', LibMakefile, 'cleanall']\r
1253 LaunchCommand(NewBuildCommand, AutoGenObject.MakeFileDir)\r
1254 return True\r
1255\r
1256 # cleanall\r
1257 if Target == 'cleanall':\r
1258 try:\r
1259 #os.rmdir(AutoGenObject.BuildDir)\r
1260 RemoveDirectory(AutoGenObject.BuildDir, True)\r
5b0671c1 1261 except WindowsError as X:\r
03af2753
HC
1262 EdkLogger.error("build", FILE_DELETE_FAILURE, ExtraData=str(X))\r
1263 return True\r
1264\r
1265 ## Build a module or platform\r
1266 #\r
1267 # Create autogen code and makefile for a module or platform, and the launch\r
1268 # "make" command to build it\r
1269 #\r
1270 # @param Target The target of build command\r
1271 # @param Platform The platform file\r
1272 # @param Module The module file\r
1273 # @param BuildTarget The name of build target, one of "DEBUG", "RELEASE"\r
1274 # @param ToolChain The name of toolchain to build\r
1275 # @param Arch The arch of the module/platform\r
1276 # @param CreateDepModuleCodeFile Flag used to indicate creating code\r
1277 # for dependent modules/Libraries\r
1278 # @param CreateDepModuleMakeFile Flag used to indicate creating makefile\r
1279 # for dependent modules/Libraries\r
1280 #\r
1281 def _Build(self, Target, AutoGenObject, CreateDepsCodeFile=True, CreateDepsMakeFile=True, BuildModule=False):\r
4231a819 1282 if AutoGenObject is None:\r
03af2753
HC
1283 return False\r
1284\r
1285 # skip file generation for cleanxxx targets, run and fds target\r
1286 if Target not in ['clean', 'cleanlib', 'cleanall', 'run', 'fds']:\r
1287 # for target which must generate AutoGen code and makefile\r
1288 if not self.SkipAutoGen or Target == 'genc':\r
1289 self.Progress.Start("Generating code")\r
1290 AutoGenObject.CreateCodeFile(CreateDepsCodeFile)\r
1291 self.Progress.Stop("done!")\r
1292 if Target == "genc":\r
1293 return True\r
1294\r
1295 if not self.SkipAutoGen or Target == 'genmake':\r
1296 self.Progress.Start("Generating makefile")\r
1297 AutoGenObject.CreateMakeFile(CreateDepsMakeFile)\r
1298 #AutoGenObject.CreateAsBuiltInf()\r
1299 self.Progress.Stop("done!")\r
1300 if Target == "genmake":\r
1301 return True\r
1302 else:\r
1303 # always recreate top/platform makefile when clean, just in case of inconsistency\r
1304 AutoGenObject.CreateCodeFile(False)\r
1305 AutoGenObject.CreateMakeFile(False)\r
1306\r
1307 if EdkLogger.GetLevel() == EdkLogger.QUIET:\r
1308 EdkLogger.quiet("Building ... %s" % repr(AutoGenObject))\r
1309\r
1310 BuildCommand = AutoGenObject.BuildCommand\r
4231a819 1311 if BuildCommand is None or len(BuildCommand) == 0:\r
03af2753
HC
1312 EdkLogger.error("build", OPTION_MISSING,\r
1313 "No build command found for this module. "\r
1314 "Please check your setting of %s_%s_%s_MAKE_PATH in Conf/tools_def.txt file." %\r
1315 (AutoGenObject.BuildTarget, AutoGenObject.ToolChain, AutoGenObject.Arch),\r
1316 ExtraData=str(AutoGenObject))\r
1317\r
b0e23cf3
YL
1318 # build modules\r
1319 if BuildModule:\r
1320 if Target != 'fds':\r
1321 BuildCommand = BuildCommand + [Target]\r
1b8eca8b 1322 AutoGenObject.BuildTime = LaunchCommand(BuildCommand, AutoGenObject.MakeFileDir)\r
b0e23cf3
YL
1323 self.CreateAsBuiltInf()\r
1324 return True\r
1325\r
03af2753
HC
1326 # genfds\r
1327 if Target == 'fds':\r
370544d1
DL
1328 if GenFdsApi(AutoGenObject.GenFdsCommandDict, self.Db):\r
1329 EdkLogger.error("build", COMMAND_FAILURE)\r
03af2753
HC
1330 return True\r
1331\r
1332 # run\r
1333 if Target == 'run':\r
997a5d1b 1334 RunDir = os.path.normpath(os.path.join(AutoGenObject.BuildDir, GlobalData.gGlobalDefines['ARCH']))\r
03af2753
HC
1335 Command = '.\SecMain'\r
1336 os.chdir(RunDir)\r
1337 LaunchCommand(Command, RunDir)\r
1338 return True\r
1339\r
03af2753
HC
1340 # build library\r
1341 if Target == 'libraries':\r
1342 pass\r
1343\r
1344 # not build modules\r
1345\r
1346\r
1347 # cleanall\r
52302d4d
LG
1348 if Target == 'cleanall':\r
1349 try:\r
1350 #os.rmdir(AutoGenObject.BuildDir)\r
1351 RemoveDirectory(AutoGenObject.BuildDir, True)\r
5b0671c1 1352 except WindowsError as X:\r
52302d4d
LG
1353 EdkLogger.error("build", FILE_DELETE_FAILURE, ExtraData=str(X))\r
1354 return True\r
1355\r
6780eef1 1356 ## Rebase module image and Get function address for the input module list.\r
52302d4d
LG
1357 #\r
1358 def _RebaseModule (self, MapBuffer, BaseAddress, ModuleList, AddrIsOffset = True, ModeIsSmm = False):\r
1359 if ModeIsSmm:\r
1360 AddrIsOffset = False\r
98120f5f 1361 for InfFile in ModuleList:\r
da92f276
LG
1362 sys.stdout.write (".")\r
1363 sys.stdout.flush()\r
52302d4d
LG
1364 ModuleInfo = ModuleList[InfFile]\r
1365 ModuleName = ModuleInfo.BaseName\r
f3decdc3
LG
1366 ModuleOutputImage = ModuleInfo.Image.FileName\r
1367 ModuleDebugImage = os.path.join(ModuleInfo.DebugDir, ModuleInfo.BaseName + '.efi')\r
52302d4d
LG
1368 ## for SMM module in SMRAM, the SMRAM will be allocated from base to top.\r
1369 if not ModeIsSmm:\r
1370 BaseAddress = BaseAddress - ModuleInfo.Image.Size\r
1371 #\r
1372 # Update Image to new BaseAddress by GenFw tool\r
1373 #\r
f3decdc3 1374 LaunchCommand(["GenFw", "--rebase", str(BaseAddress), "-r", ModuleOutputImage], ModuleInfo.OutputDir)\r
47fea6af 1375 LaunchCommand(["GenFw", "--rebase", str(BaseAddress), "-r", ModuleDebugImage], ModuleInfo.DebugDir)\r
52302d4d
LG
1376 else:\r
1377 #\r
1378 # Set new address to the section header only for SMM driver.\r
1379 #\r
f3decdc3 1380 LaunchCommand(["GenFw", "--address", str(BaseAddress), "-r", ModuleOutputImage], ModuleInfo.OutputDir)\r
47fea6af 1381 LaunchCommand(["GenFw", "--address", str(BaseAddress), "-r", ModuleDebugImage], ModuleInfo.DebugDir)\r
52302d4d 1382 #\r
fb0b35e0 1383 # Collect function address from Map file\r
52302d4d 1384 #\r
f3decdc3 1385 ImageMapTable = ModuleOutputImage.replace('.efi', '.map')\r
52302d4d
LG
1386 FunctionList = []\r
1387 if os.path.exists(ImageMapTable):\r
1388 OrigImageBaseAddress = 0\r
47fea6af 1389 ImageMap = open(ImageMapTable, 'r')\r
52302d4d
LG
1390 for LinStr in ImageMap:\r
1391 if len (LinStr.strip()) == 0:\r
1392 continue\r
1393 #\r
1394 # Get the preferred address set on link time.\r
1395 #\r
1396 if LinStr.find ('Preferred load address is') != -1:\r
1397 StrList = LinStr.split()\r
1398 OrigImageBaseAddress = int (StrList[len(StrList) - 1], 16)\r
1399\r
1400 StrList = LinStr.split()\r
1401 if len (StrList) > 4:\r
47fea6af 1402 if StrList[3] == 'f' or StrList[3] == 'F':\r
52302d4d
LG
1403 Name = StrList[1]\r
1404 RelativeAddress = int (StrList[2], 16) - OrigImageBaseAddress\r
1405 FunctionList.append ((Name, RelativeAddress))\r
39879ef2 1406\r
52302d4d
LG
1407 ImageMap.close()\r
1408 #\r
1409 # Add general information.\r
1410 #\r
1411 if ModeIsSmm:\r
d943b0c3 1412 MapBuffer.append('\n\n%s (Fixed SMRAM Offset, BaseAddress=0x%010X, EntryPoint=0x%010X)\n' % (ModuleName, BaseAddress, BaseAddress + ModuleInfo.Image.EntryPoint))\r
52302d4d 1413 elif AddrIsOffset:\r
d943b0c3 1414 MapBuffer.append('\n\n%s (Fixed Memory Offset, BaseAddress=-0x%010X, EntryPoint=-0x%010X)\n' % (ModuleName, 0 - BaseAddress, 0 - (BaseAddress + ModuleInfo.Image.EntryPoint)))\r
52302d4d 1415 else:\r
d943b0c3 1416 MapBuffer.append('\n\n%s (Fixed Memory Address, BaseAddress=0x%010X, EntryPoint=0x%010X)\n' % (ModuleName, BaseAddress, BaseAddress + ModuleInfo.Image.EntryPoint))\r
52302d4d
LG
1417 #\r
1418 # Add guid and general seciton section.\r
1419 #\r
1420 TextSectionAddress = 0\r
1421 DataSectionAddress = 0\r
1422 for SectionHeader in ModuleInfo.Image.SectionHeaderList:\r
1423 if SectionHeader[0] == '.text':\r
1424 TextSectionAddress = SectionHeader[1]\r
1425 elif SectionHeader[0] in ['.data', '.sdata']:\r
1426 DataSectionAddress = SectionHeader[1]\r
1427 if AddrIsOffset:\r
d943b0c3 1428 MapBuffer.append('(GUID=%s, .textbaseaddress=-0x%010X, .databaseaddress=-0x%010X)\n' % (ModuleInfo.Guid, 0 - (BaseAddress + TextSectionAddress), 0 - (BaseAddress + DataSectionAddress)))\r
52302d4d 1429 else:\r
d943b0c3 1430 MapBuffer.append('(GUID=%s, .textbaseaddress=0x%010X, .databaseaddress=0x%010X)\n' % (ModuleInfo.Guid, BaseAddress + TextSectionAddress, BaseAddress + DataSectionAddress))\r
f3decdc3
LG
1431 #\r
1432 # Add debug image full path.\r
1433 #\r
d943b0c3 1434 MapBuffer.append('(IMAGE=%s)\n\n' % (ModuleDebugImage))\r
52302d4d 1435 #\r
fb0b35e0 1436 # Add function address\r
52302d4d
LG
1437 #\r
1438 for Function in FunctionList:\r
1439 if AddrIsOffset:\r
d943b0c3 1440 MapBuffer.append(' -0x%010X %s\n' % (0 - (BaseAddress + Function[1]), Function[0]))\r
52302d4d 1441 else:\r
d943b0c3 1442 MapBuffer.append(' 0x%010X %s\n' % (BaseAddress + Function[1], Function[0]))\r
52302d4d
LG
1443 ImageMap.close()\r
1444\r
1445 #\r
1446 # for SMM module in SMRAM, the SMRAM will be allocated from base to top.\r
1447 #\r
1448 if ModeIsSmm:\r
1449 BaseAddress = BaseAddress + ModuleInfo.Image.Size\r
1450\r
1451 ## Collect MAP information of all FVs\r
1452 #\r
636f2be6 1453 def _CollectFvMapBuffer (self, MapBuffer, Wa, ModuleList):\r
0d2711a6 1454 if self.Fdf:\r
52302d4d 1455 # First get the XIP base address for FV map file.\r
636f2be6 1456 GuidPattern = re.compile("[-a-fA-F0-9]+")\r
f3decdc3 1457 GuidName = re.compile("\(GUID=[-a-fA-F0-9]+")\r
9eb87141 1458 for FvName in Wa.FdfProfile.FvDict:\r
52302d4d
LG
1459 FvMapBuffer = os.path.join(Wa.FvDir, FvName + '.Fv.map')\r
1460 if not os.path.exists(FvMapBuffer):\r
1461 continue\r
1be2ed90 1462 FvMap = open(FvMapBuffer, 'r')\r
52302d4d
LG
1463 #skip FV size information\r
1464 FvMap.readline()\r
1465 FvMap.readline()\r
1466 FvMap.readline()\r
1467 FvMap.readline()\r
636f2be6
LG
1468 for Line in FvMap:\r
1469 MatchGuid = GuidPattern.match(Line)\r
4231a819 1470 if MatchGuid is not None:\r
636f2be6
LG
1471 #\r
1472 # Replace GUID with module name\r
1473 #\r
1474 GuidString = MatchGuid.group()\r
1475 if GuidString.upper() in ModuleList:\r
1476 Line = Line.replace(GuidString, ModuleList[GuidString.upper()].Name)\r
d943b0c3 1477 MapBuffer.append(Line)\r
f3decdc3
LG
1478 #\r
1479 # Add the debug image full path.\r
1480 #\r
1481 MatchGuid = GuidName.match(Line)\r
4231a819 1482 if MatchGuid is not None:\r
f3decdc3
LG
1483 GuidString = MatchGuid.group().split("=")[1]\r
1484 if GuidString.upper() in ModuleList:\r
d943b0c3 1485 MapBuffer.append('(IMAGE=%s)\n' % (os.path.join(ModuleList[GuidString.upper()].DebugDir, ModuleList[GuidString.upper()].Name + '.efi')))\r
f3decdc3 1486\r
52302d4d
LG
1487 FvMap.close()\r
1488\r
1489 ## Collect MAP information of all modules\r
1490 #\r
1491 def _CollectModuleMapBuffer (self, MapBuffer, ModuleList):\r
da92f276
LG
1492 sys.stdout.write ("Generate Load Module At Fix Address Map")\r
1493 sys.stdout.flush()\r
52302d4d
LG
1494 PatchEfiImageList = []\r
1495 PeiModuleList = {}\r
1496 BtModuleList = {}\r
1497 RtModuleList = {}\r
1498 SmmModuleList = {}\r
1499 PeiSize = 0\r
1500 BtSize = 0\r
1501 RtSize = 0\r
1502 # reserve 4K size in SMRAM to make SMM module address not from 0.\r
1503 SmmSize = 0x1000\r
636f2be6
LG
1504 for ModuleGuid in ModuleList:\r
1505 Module = ModuleList[ModuleGuid]\r
52302d4d 1506 GlobalData.gProcessingFile = "%s [%s, %s, %s]" % (Module.MetaFile, Module.Arch, Module.ToolChain, Module.BuildTarget)\r
4afd3d04 1507\r
52302d4d
LG
1508 OutputImageFile = ''\r
1509 for ResultFile in Module.CodaTargetList:\r
1510 if str(ResultFile.Target).endswith('.efi'):\r
1511 #\r
1512 # module list for PEI, DXE, RUNTIME and SMM\r
1513 #\r
1514 OutputImageFile = os.path.join(Module.OutputDir, Module.Name + '.efi')\r
1515 ImageClass = PeImageClass (OutputImageFile)\r
1516 if not ImageClass.IsValid:\r
1517 EdkLogger.error("build", FILE_PARSE_FAILURE, ExtraData=ImageClass.ErrorInfo)\r
f3decdc3 1518 ImageInfo = PeImageInfo(Module.Name, Module.Guid, Module.Arch, Module.OutputDir, Module.DebugDir, ImageClass)\r
0c60e60b 1519 if Module.ModuleType in [SUP_MODULE_PEI_CORE, SUP_MODULE_PEIM, EDK_COMPONENT_TYPE_COMBINED_PEIM_DRIVER, EDK_COMPONENT_TYPE_PIC_PEIM, EDK_COMPONENT_TYPE_RELOCATABLE_PEIM, SUP_MODULE_DXE_CORE]:\r
52302d4d
LG
1520 PeiModuleList[Module.MetaFile] = ImageInfo\r
1521 PeiSize += ImageInfo.Image.Size\r
0c60e60b 1522 elif Module.ModuleType in [EDK_COMPONENT_TYPE_BS_DRIVER, SUP_MODULE_DXE_DRIVER, SUP_MODULE_UEFI_DRIVER]:\r
52302d4d
LG
1523 BtModuleList[Module.MetaFile] = ImageInfo\r
1524 BtSize += ImageInfo.Image.Size\r
0c60e60b 1525 elif Module.ModuleType in [SUP_MODULE_DXE_RUNTIME_DRIVER, EDK_COMPONENT_TYPE_RT_DRIVER, SUP_MODULE_DXE_SAL_DRIVER, EDK_COMPONENT_TYPE_SAL_RT_DRIVER]:\r
52302d4d 1526 RtModuleList[Module.MetaFile] = ImageInfo\r
52302d4d 1527 RtSize += ImageInfo.Image.Size\r
8bb63e37 1528 elif Module.ModuleType in [SUP_MODULE_SMM_CORE, SUP_MODULE_DXE_SMM_DRIVER, SUP_MODULE_MM_STANDALONE, SUP_MODULE_MM_CORE_STANDALONE]:\r
52302d4d
LG
1529 SmmModuleList[Module.MetaFile] = ImageInfo\r
1530 SmmSize += ImageInfo.Image.Size\r
8bb63e37 1531 if Module.ModuleType == SUP_MODULE_DXE_SMM_DRIVER:\r
888d7f19 1532 PiSpecVersion = Module.Module.Specification.get('PI_SPECIFICATION_VERSION', '0x00000000')\r
52302d4d 1533 # for PI specification < PI1.1, DXE_SMM_DRIVER also runs as BOOT time driver.\r
da92f276 1534 if int(PiSpecVersion, 16) < 0x0001000A:\r
52302d4d
LG
1535 BtModuleList[Module.MetaFile] = ImageInfo\r
1536 BtSize += ImageInfo.Image.Size\r
1537 break\r
1538 #\r
1539 # EFI image is final target.\r
1540 # Check EFI image contains patchable FixAddress related PCDs.\r
1541 #\r
1542 if OutputImageFile != '':\r
1543 ModuleIsPatch = False\r
1544 for Pcd in Module.ModulePcdList:\r
eece4292 1545 if Pcd.Type == TAB_PCDS_PATCHABLE_IN_MODULE and Pcd.TokenCName in TAB_PCDS_PATCHABLE_LOAD_FIX_ADDRESS_SET:\r
52302d4d
LG
1546 ModuleIsPatch = True\r
1547 break\r
1548 if not ModuleIsPatch:\r
1549 for Pcd in Module.LibraryPcdList:\r
eece4292 1550 if Pcd.Type == TAB_PCDS_PATCHABLE_IN_MODULE and Pcd.TokenCName in TAB_PCDS_PATCHABLE_LOAD_FIX_ADDRESS_SET:\r
52302d4d
LG
1551 ModuleIsPatch = True\r
1552 break\r
4afd3d04 1553\r
52302d4d
LG
1554 if not ModuleIsPatch:\r
1555 continue\r
1556 #\r
1557 # Module includes the patchable load fix address PCDs.\r
4afd3d04 1558 # It will be fixed up later.\r
52302d4d
LG
1559 #\r
1560 PatchEfiImageList.append (OutputImageFile)\r
4afd3d04 1561\r
52302d4d
LG
1562 #\r
1563 # Get Top Memory address\r
1564 #\r
1565 ReservedRuntimeMemorySize = 0\r
1566 TopMemoryAddress = 0\r
1567 if self.LoadFixAddress == 0xFFFFFFFFFFFFFFFF:\r
1568 TopMemoryAddress = 0\r
1569 else:\r
1570 TopMemoryAddress = self.LoadFixAddress\r
1571 if TopMemoryAddress < RtSize + BtSize + PeiSize:\r
1572 EdkLogger.error("build", PARAMETER_INVALID, "FIX_LOAD_TOP_MEMORY_ADDRESS is too low to load driver")\r
52302d4d
LG
1573\r
1574 #\r
1575 # Patch FixAddress related PCDs into EFI image\r
1576 #\r
4afd3d04 1577 for EfiImage in PatchEfiImageList:\r
52302d4d
LG
1578 EfiImageMap = EfiImage.replace('.efi', '.map')\r
1579 if not os.path.exists(EfiImageMap):\r
1580 continue\r
1581 #\r
1582 # Get PCD offset in EFI image by GenPatchPcdTable function\r
1583 #\r
4afd3d04 1584 PcdTable = parsePcdInfoFromMapFile(EfiImageMap, EfiImage)\r
52302d4d
LG
1585 #\r
1586 # Patch real PCD value by PatchPcdValue tool\r
1587 #\r
1588 for PcdInfo in PcdTable:\r
1589 ReturnValue = 0\r
1590 if PcdInfo[0] == TAB_PCDS_PATCHABLE_LOAD_FIX_ADDRESS_PEI_PAGE_SIZE:\r
b3e94a06 1591 ReturnValue, ErrorInfo = PatchBinaryFile (EfiImage, PcdInfo[1], TAB_PCDS_PATCHABLE_LOAD_FIX_ADDRESS_PEI_PAGE_SIZE_DATA_TYPE, str (PeiSize // 0x1000))\r
52302d4d 1592 elif PcdInfo[0] == TAB_PCDS_PATCHABLE_LOAD_FIX_ADDRESS_DXE_PAGE_SIZE:\r
b3e94a06 1593 ReturnValue, ErrorInfo = PatchBinaryFile (EfiImage, PcdInfo[1], TAB_PCDS_PATCHABLE_LOAD_FIX_ADDRESS_DXE_PAGE_SIZE_DATA_TYPE, str (BtSize // 0x1000))\r
52302d4d 1594 elif PcdInfo[0] == TAB_PCDS_PATCHABLE_LOAD_FIX_ADDRESS_RUNTIME_PAGE_SIZE:\r
b3e94a06 1595 ReturnValue, ErrorInfo = PatchBinaryFile (EfiImage, PcdInfo[1], TAB_PCDS_PATCHABLE_LOAD_FIX_ADDRESS_RUNTIME_PAGE_SIZE_DATA_TYPE, str (RtSize // 0x1000))\r
52302d4d 1596 elif PcdInfo[0] == TAB_PCDS_PATCHABLE_LOAD_FIX_ADDRESS_SMM_PAGE_SIZE and len (SmmModuleList) > 0:\r
b3e94a06 1597 ReturnValue, ErrorInfo = PatchBinaryFile (EfiImage, PcdInfo[1], TAB_PCDS_PATCHABLE_LOAD_FIX_ADDRESS_SMM_PAGE_SIZE_DATA_TYPE, str (SmmSize // 0x1000))\r
52302d4d
LG
1598 if ReturnValue != 0:\r
1599 EdkLogger.error("build", PARAMETER_INVALID, "Patch PCD value failed", ExtraData=ErrorInfo)\r
4afd3d04 1600\r
d943b0c3
FB
1601 MapBuffer.append('PEI_CODE_PAGE_NUMBER = 0x%x\n' % (PeiSize // 0x1000))\r
1602 MapBuffer.append('BOOT_CODE_PAGE_NUMBER = 0x%x\n' % (BtSize // 0x1000))\r
1603 MapBuffer.append('RUNTIME_CODE_PAGE_NUMBER = 0x%x\n' % (RtSize // 0x1000))\r
52302d4d 1604 if len (SmmModuleList) > 0:\r
d943b0c3 1605 MapBuffer.append('SMM_CODE_PAGE_NUMBER = 0x%x\n' % (SmmSize // 0x1000))\r
4afd3d04
LG
1606\r
1607 PeiBaseAddr = TopMemoryAddress - RtSize - BtSize\r
52302d4d 1608 BtBaseAddr = TopMemoryAddress - RtSize\r
4afd3d04 1609 RtBaseAddr = TopMemoryAddress - ReservedRuntimeMemorySize\r
52302d4d
LG
1610\r
1611 self._RebaseModule (MapBuffer, PeiBaseAddr, PeiModuleList, TopMemoryAddress == 0)\r
1612 self._RebaseModule (MapBuffer, BtBaseAddr, BtModuleList, TopMemoryAddress == 0)\r
1613 self._RebaseModule (MapBuffer, RtBaseAddr, RtModuleList, TopMemoryAddress == 0)\r
47fea6af 1614 self._RebaseModule (MapBuffer, 0x1000, SmmModuleList, AddrIsOffset=False, ModeIsSmm=True)\r
d943b0c3 1615 MapBuffer.append('\n\n')\r
da92f276
LG
1616 sys.stdout.write ("\n")\r
1617 sys.stdout.flush()\r
4afd3d04 1618\r
52302d4d
LG
1619 ## Save platform Map file\r
1620 #\r
1621 def _SaveMapFile (self, MapBuffer, Wa):\r
1622 #\r
1623 # Map file path is got.\r
1624 #\r
1625 MapFilePath = os.path.join(Wa.BuildDir, Wa.Name + '.map')\r
1626 #\r
1627 # Save address map into MAP file.\r
1628 #\r
d943b0c3 1629 SaveFileOnChange(MapFilePath, ''.join(MapBuffer), False)\r
da92f276 1630 if self.LoadFixAddress != 0:\r
47fea6af 1631 sys.stdout.write ("\nLoad Module At Fix Address Map file can be found at %s\n" % (MapFilePath))\r
da92f276 1632 sys.stdout.flush()\r
52302d4d
LG
1633\r
1634 ## Build active platform for different build targets and different tool chains\r
1635 #\r
1636 def _BuildPlatform(self):\r
f0dc69e6 1637 SaveFileOnChange(self.PlatformBuildPath, '# DO NOT EDIT \n# FILE auto-generated\n', False)\r
52302d4d 1638 for BuildTarget in self.BuildTargetList:\r
0d2711a6 1639 GlobalData.gGlobalDefines['TARGET'] = BuildTarget\r
40b4e21d 1640 index = 0\r
52302d4d 1641 for ToolChain in self.ToolChainList:\r
0d2711a6
LG
1642 GlobalData.gGlobalDefines['TOOLCHAIN'] = ToolChain\r
1643 GlobalData.gGlobalDefines['TOOL_CHAIN_TAG'] = ToolChain\r
40b4e21d
YZ
1644 GlobalData.gGlobalDefines['FAMILY'] = self.ToolChainFamily[index]\r
1645 index += 1\r
52302d4d
LG
1646 Wa = WorkspaceAutoGen(\r
1647 self.WorkspaceDir,\r
0d2711a6 1648 self.PlatformFile,\r
52302d4d
LG
1649 BuildTarget,\r
1650 ToolChain,\r
1651 self.ArchList,\r
1652 self.BuildDatabase,\r
1653 self.TargetTxt,\r
1654 self.ToolDef,\r
1655 self.Fdf,\r
1656 self.FdList,\r
1657 self.FvList,\r
4234283c 1658 self.CapList,\r
f3decdc3 1659 self.SkuId,\r
9508d0fa
LG
1660 self.UniFlag,\r
1661 self.Progress\r
52302d4d 1662 )\r
0d2711a6
LG
1663 self.Fdf = Wa.FdfFile\r
1664 self.LoadFixAddress = Wa.Platform.LoadFixAddress\r
52302d4d
LG
1665 self.BuildReport.AddPlatformReport(Wa)\r
1666 self.Progress.Stop("done!")\r
37de70b7
YZ
1667\r
1668 # Add ffs build to makefile\r
1669 CmdListDict = {}\r
1670 if GlobalData.gEnableGenfdsMultiThread and self.Fdf:\r
1671 CmdListDict = self._GenFfsCmd()\r
1672\r
03af2753
HC
1673 for Arch in Wa.ArchList:\r
1674 GlobalData.gGlobalDefines['ARCH'] = Arch\r
1675 Pa = PlatformAutoGen(Wa, self.PlatformFile, BuildTarget, ToolChain, Arch)\r
a0a2cd1e
FB
1676 for Module in Pa.Platform.Modules:\r
1677 # Get ModuleAutoGen object to generate C code file and makefile\r
1678 Ma = ModuleAutoGen(Wa, Module, BuildTarget, ToolChain, Arch, self.PlatformFile)\r
4231a819 1679 if Ma is None:\r
a0a2cd1e
FB
1680 continue\r
1681 self.BuildModules.append(Ma)\r
37de70b7 1682 self._BuildPa(self.Target, Pa, FfsCommand=CmdListDict)\r
4afd3d04 1683\r
52302d4d 1684 # Create MAP file when Load Fix Address is enabled.\r
636f2be6 1685 if self.Target in ["", "all", "fds"]:\r
0d2711a6
LG
1686 for Arch in Wa.ArchList:\r
1687 GlobalData.gGlobalDefines['ARCH'] = Arch\r
52302d4d
LG
1688 #\r
1689 # Check whether the set fix address is above 4G for 32bit image.\r
1690 #\r
1691 if (Arch == 'IA32' or Arch == 'ARM') and self.LoadFixAddress != 0xFFFFFFFFFFFFFFFF and self.LoadFixAddress >= 0x100000000:\r
0d2711a6 1692 EdkLogger.error("build", PARAMETER_INVALID, "FIX_LOAD_TOP_MEMORY_ADDRESS can't be set to larger than or equal to 4G for the platform with IA32 or ARM arch modules")\r
52302d4d
LG
1693 #\r
1694 # Get Module List\r
1695 #\r
636f2be6 1696 ModuleList = {}\r
52302d4d
LG
1697 for Pa in Wa.AutoGenObjectList:\r
1698 for Ma in Pa.ModuleAutoGenList:\r
4231a819 1699 if Ma is None:\r
52302d4d
LG
1700 continue\r
1701 if not Ma.IsLibrary:\r
636f2be6 1702 ModuleList[Ma.Guid.upper()] = Ma\r
52302d4d 1703\r
d943b0c3 1704 MapBuffer = []\r
636f2be6
LG
1705 if self.LoadFixAddress != 0:\r
1706 #\r
1707 # Rebase module to the preferred memory address before GenFds\r
1708 #\r
1709 self._CollectModuleMapBuffer(MapBuffer, ModuleList)\r
0d2711a6 1710 if self.Fdf:\r
b0e23cf3
YL
1711 #\r
1712 # create FDS again for the updated EFI image\r
1713 #\r
1714 self._Build("fds", Wa)\r
52302d4d
LG
1715 #\r
1716 # Create MAP file for all platform FVs after GenFds.\r
1717 #\r
636f2be6 1718 self._CollectFvMapBuffer(MapBuffer, Wa, ModuleList)\r
52302d4d
LG
1719 #\r
1720 # Save MAP buffer into MAP file.\r
1721 #\r
1722 self._SaveMapFile (MapBuffer, Wa)\r
1723\r
1724 ## Build active module for different build targets, different tool chains and different archs\r
1725 #\r
1726 def _BuildModule(self):\r
1727 for BuildTarget in self.BuildTargetList:\r
0d2711a6 1728 GlobalData.gGlobalDefines['TARGET'] = BuildTarget\r
40b4e21d 1729 index = 0\r
52302d4d 1730 for ToolChain in self.ToolChainList:\r
1b8eca8b 1731 WorkspaceAutoGenTime = time.time()\r
0d2711a6 1732 GlobalData.gGlobalDefines['TOOLCHAIN'] = ToolChain\r
4afd3d04 1733 GlobalData.gGlobalDefines['TOOL_CHAIN_TAG'] = ToolChain\r
40b4e21d
YZ
1734 GlobalData.gGlobalDefines['FAMILY'] = self.ToolChainFamily[index]\r
1735 index += 1\r
52302d4d
LG
1736 #\r
1737 # module build needs platform build information, so get platform\r
1738 # AutoGen first\r
1739 #\r
1740 Wa = WorkspaceAutoGen(\r
1741 self.WorkspaceDir,\r
0d2711a6 1742 self.PlatformFile,\r
52302d4d
LG
1743 BuildTarget,\r
1744 ToolChain,\r
1745 self.ArchList,\r
1746 self.BuildDatabase,\r
1747 self.TargetTxt,\r
1748 self.ToolDef,\r
1749 self.Fdf,\r
1750 self.FdList,\r
1751 self.FvList,\r
4234283c 1752 self.CapList,\r
f3decdc3 1753 self.SkuId,\r
9508d0fa
LG
1754 self.UniFlag,\r
1755 self.Progress,\r
1756 self.ModuleFile\r
52302d4d 1757 )\r
0d2711a6
LG
1758 self.Fdf = Wa.FdfFile\r
1759 self.LoadFixAddress = Wa.Platform.LoadFixAddress\r
52302d4d 1760 Wa.CreateMakeFile(False)\r
37de70b7
YZ
1761 # Add ffs build to makefile\r
1762 CmdListDict = None\r
1763 if GlobalData.gEnableGenfdsMultiThread and self.Fdf:\r
1764 CmdListDict = self._GenFfsCmd()\r
52302d4d
LG
1765 self.Progress.Stop("done!")\r
1766 MaList = []\r
1b8eca8b
YZ
1767 ExitFlag = threading.Event()\r
1768 ExitFlag.clear()\r
1769 self.AutoGenTime += int(round((time.time() - WorkspaceAutoGenTime)))\r
0d2711a6 1770 for Arch in Wa.ArchList:\r
1b8eca8b 1771 AutoGenStart = time.time()\r
0d2711a6 1772 GlobalData.gGlobalDefines['ARCH'] = Arch\r
16bad1fb
YZ
1773 Pa = PlatformAutoGen(Wa, self.PlatformFile, BuildTarget, ToolChain, Arch)\r
1774 for Module in Pa.Platform.Modules:\r
fbe53845 1775 if self.ModuleFile.Dir == Module.Dir and self.ModuleFile.Name == Module.Name:\r
16bad1fb 1776 Ma = ModuleAutoGen(Wa, Module, BuildTarget, ToolChain, Arch, self.PlatformFile)\r
4231a819 1777 if Ma is None: continue\r
19bf8314
YZ
1778 MaList.append(Ma)\r
1779 if Ma.CanSkipbyHash():\r
1780 self.HashSkipModules.append(Ma)\r
1781 continue\r
119d8c42
YZ
1782 # Not to auto-gen for targets 'clean', 'cleanlib', 'cleanall', 'run', 'fds'\r
1783 if self.Target not in ['clean', 'cleanlib', 'cleanall', 'run', 'fds']:\r
1784 # for target which must generate AutoGen code and makefile\r
1785 if not self.SkipAutoGen or self.Target == 'genc':\r
cd498216 1786 self.Progress.Start("Generating code")\r
119d8c42 1787 Ma.CreateCodeFile(True)\r
cd498216
YZ
1788 self.Progress.Stop("done!")\r
1789 if self.Target == "genc":\r
1790 return True\r
119d8c42 1791 if not self.SkipAutoGen or self.Target == 'genmake':\r
cd498216 1792 self.Progress.Start("Generating makefile")\r
37de70b7
YZ
1793 if CmdListDict and self.Fdf and (Module.File, Arch) in CmdListDict:\r
1794 Ma.CreateMakeFile(True, CmdListDict[Module.File, Arch])\r
1795 del CmdListDict[Module.File, Arch]\r
1796 else:\r
1797 Ma.CreateMakeFile(True)\r
cd498216
YZ
1798 self.Progress.Stop("done!")\r
1799 if self.Target == "genmake":\r
1800 return True\r
16bad1fb 1801 self.BuildModules.append(Ma)\r
1b8eca8b
YZ
1802 self.AutoGenTime += int(round((time.time() - AutoGenStart)))\r
1803 MakeStart = time.time()\r
1804 for Ma in self.BuildModules:\r
1805 if not Ma.IsBinaryModule:\r
1806 Bt = BuildTask.New(ModuleMakeUnit(Ma, self.Target))\r
1807 # Break build if any build thread has error\r
1808 if BuildTask.HasError():\r
1809 # we need a full version of makefile for platform\r
1810 ExitFlag.set()\r
1811 BuildTask.WaitForComplete()\r
1812 Pa.CreateMakeFile(False)\r
1813 EdkLogger.error("build", BUILD_ERROR, "Failed to build module", ExtraData=GlobalData.gBuildingModule)\r
1814 # Start task scheduler\r
1815 if not BuildTask.IsOnGoing():\r
1816 BuildTask.StartScheduler(self.ThreadNumber, ExitFlag)\r
1817\r
1818 # in case there's an interruption. we need a full version of makefile for platform\r
1819 Pa.CreateMakeFile(False)\r
1820 if BuildTask.HasError():\r
1821 EdkLogger.error("build", BUILD_ERROR, "Failed to build module", ExtraData=GlobalData.gBuildingModule)\r
1822 self.MakeTime += int(round((time.time() - MakeStart)))\r
1823\r
1824 MakeContiue = time.time()\r
1825 ExitFlag.set()\r
1826 BuildTask.WaitForComplete()\r
1827 self.CreateAsBuiltInf()\r
1828 self.MakeTime += int(round((time.time() - MakeContiue)))\r
1829 if BuildTask.HasError():\r
1830 EdkLogger.error("build", BUILD_ERROR, "Failed to build module", ExtraData=GlobalData.gBuildingModule)\r
d5d56f1b
LG
1831\r
1832 self.BuildReport.AddPlatformReport(Wa, MaList)\r
52302d4d
LG
1833 if MaList == []:\r
1834 EdkLogger.error(\r
1835 'build',\r
1836 BUILD_ERROR,\r
1837 "Module for [%s] is not a component of active platform."\\r
1838 " Please make sure that the ARCH and inf file path are"\\r
47fea6af 1839 " given in the same as in [%s]" % \\r
0d2711a6 1840 (', '.join(Wa.ArchList), self.PlatformFile),\r
52302d4d
LG
1841 ExtraData=self.ModuleFile\r
1842 )\r
1843 # Create MAP file when Load Fix Address is enabled.\r
0d2711a6
LG
1844 if self.Target == "fds" and self.Fdf:\r
1845 for Arch in Wa.ArchList:\r
52302d4d
LG
1846 #\r
1847 # Check whether the set fix address is above 4G for 32bit image.\r
1848 #\r
1849 if (Arch == 'IA32' or Arch == 'ARM') and self.LoadFixAddress != 0xFFFFFFFFFFFFFFFF and self.LoadFixAddress >= 0x100000000:\r
1850 EdkLogger.error("build", PARAMETER_INVALID, "FIX_LOAD_TOP_MEMORY_ADDRESS can't be set to larger than or equal to 4G for the platorm with IA32 or ARM arch modules")\r
1851 #\r
1852 # Get Module List\r
1853 #\r
636f2be6 1854 ModuleList = {}\r
52302d4d
LG
1855 for Pa in Wa.AutoGenObjectList:\r
1856 for Ma in Pa.ModuleAutoGenList:\r
4231a819 1857 if Ma is None:\r
52302d4d
LG
1858 continue\r
1859 if not Ma.IsLibrary:\r
636f2be6 1860 ModuleList[Ma.Guid.upper()] = Ma\r
52302d4d 1861\r
d943b0c3 1862 MapBuffer = []\r
636f2be6
LG
1863 if self.LoadFixAddress != 0:\r
1864 #\r
1865 # Rebase module to the preferred memory address before GenFds\r
1866 #\r
1867 self._CollectModuleMapBuffer(MapBuffer, ModuleList)\r
b0e23cf3
YL
1868 #\r
1869 # create FDS again for the updated EFI image\r
1870 #\r
1b8eca8b 1871 GenFdsStart = time.time()\r
b0e23cf3 1872 self._Build("fds", Wa)\r
1b8eca8b 1873 self.GenFdsTime += int(round((time.time() - GenFdsStart)))\r
52302d4d
LG
1874 #\r
1875 # Create MAP file for all platform FVs after GenFds.\r
1876 #\r
636f2be6 1877 self._CollectFvMapBuffer(MapBuffer, Wa, ModuleList)\r
52302d4d
LG
1878 #\r
1879 # Save MAP buffer into MAP file.\r
1880 #\r
1881 self._SaveMapFile (MapBuffer, Wa)\r
1882\r
37de70b7 1883 def _GenFfsCmd(self):\r
f7496d71 1884 # convert dictionary of Cmd:(Inf,Arch)\r
9eb87141
CJ
1885 # to a new dictionary of (Inf,Arch):Cmd,Cmd,Cmd...\r
1886 CmdSetDict = defaultdict(set)\r
37de70b7
YZ
1887 GenFfsDict = GenFds.GenFfsMakefile('', GlobalData.gFdfParser, self, self.ArchList, GlobalData)\r
1888 for Cmd in GenFfsDict:\r
1889 tmpInf, tmpArch = GenFfsDict[Cmd]\r
9eb87141
CJ
1890 CmdSetDict[tmpInf, tmpArch].add(Cmd)\r
1891 return CmdSetDict\r
37de70b7 1892\r
52302d4d
LG
1893 ## Build a platform in multi-thread mode\r
1894 #\r
1895 def _MultiThreadBuildPlatform(self):\r
f0dc69e6 1896 SaveFileOnChange(self.PlatformBuildPath, '# DO NOT EDIT \n# FILE auto-generated\n', False)\r
52302d4d 1897 for BuildTarget in self.BuildTargetList:\r
0d2711a6 1898 GlobalData.gGlobalDefines['TARGET'] = BuildTarget\r
40b4e21d 1899 index = 0\r
52302d4d 1900 for ToolChain in self.ToolChainList:\r
1b8eca8b 1901 WorkspaceAutoGenTime = time.time()\r
0d2711a6 1902 GlobalData.gGlobalDefines['TOOLCHAIN'] = ToolChain\r
4afd3d04 1903 GlobalData.gGlobalDefines['TOOL_CHAIN_TAG'] = ToolChain\r
40b4e21d
YZ
1904 GlobalData.gGlobalDefines['FAMILY'] = self.ToolChainFamily[index]\r
1905 index += 1\r
52302d4d
LG
1906 Wa = WorkspaceAutoGen(\r
1907 self.WorkspaceDir,\r
0d2711a6 1908 self.PlatformFile,\r
52302d4d
LG
1909 BuildTarget,\r
1910 ToolChain,\r
1911 self.ArchList,\r
1912 self.BuildDatabase,\r
1913 self.TargetTxt,\r
1914 self.ToolDef,\r
1915 self.Fdf,\r
1916 self.FdList,\r
1917 self.FvList,\r
4234283c 1918 self.CapList,\r
f3decdc3 1919 self.SkuId,\r
9508d0fa
LG
1920 self.UniFlag,\r
1921 self.Progress\r
52302d4d 1922 )\r
0d2711a6
LG
1923 self.Fdf = Wa.FdfFile\r
1924 self.LoadFixAddress = Wa.Platform.LoadFixAddress\r
52302d4d
LG
1925 self.BuildReport.AddPlatformReport(Wa)\r
1926 Wa.CreateMakeFile(False)\r
1927\r
37de70b7
YZ
1928 # Add ffs build to makefile\r
1929 CmdListDict = None\r
1930 if GlobalData.gEnableGenfdsMultiThread and self.Fdf:\r
1931 CmdListDict = self._GenFfsCmd()\r
1932\r
52302d4d
LG
1933 # multi-thread exit flag\r
1934 ExitFlag = threading.Event()\r
1935 ExitFlag.clear()\r
1b8eca8b 1936 self.AutoGenTime += int(round((time.time() - WorkspaceAutoGenTime)))\r
0d2711a6 1937 for Arch in Wa.ArchList:\r
1b8eca8b 1938 AutoGenStart = time.time()\r
0d2711a6 1939 GlobalData.gGlobalDefines['ARCH'] = Arch\r
52302d4d 1940 Pa = PlatformAutoGen(Wa, self.PlatformFile, BuildTarget, ToolChain, Arch)\r
4231a819 1941 if Pa is None:\r
52302d4d 1942 continue\r
a0a2cd1e
FB
1943 ModuleList = []\r
1944 for Inf in Pa.Platform.Modules:\r
1945 ModuleList.append(Inf)\r
1946 # Add the INF only list in FDF\r
4231a819 1947 if GlobalData.gFdfParser is not None:\r
a0a2cd1e
FB
1948 for InfName in GlobalData.gFdfParser.Profile.InfList:\r
1949 Inf = PathClass(NormPath(InfName), self.WorkspaceDir, Arch)\r
1950 if Inf in Pa.Platform.Modules:\r
1951 continue\r
1952 ModuleList.append(Inf)\r
1953 for Module in ModuleList:\r
52302d4d
LG
1954 # Get ModuleAutoGen object to generate C code file and makefile\r
1955 Ma = ModuleAutoGen(Wa, Module, BuildTarget, ToolChain, Arch, self.PlatformFile)\r
f7496d71 1956\r
4231a819 1957 if Ma is None:\r
52302d4d 1958 continue\r
36d083ef 1959 if Ma.CanSkipbyHash():\r
83397f95 1960 self.HashSkipModules.append(Ma)\r
36d083ef
YZ
1961 continue\r
1962\r
52302d4d
LG
1963 # Not to auto-gen for targets 'clean', 'cleanlib', 'cleanall', 'run', 'fds'\r
1964 if self.Target not in ['clean', 'cleanlib', 'cleanall', 'run', 'fds']:\r
1965 # for target which must generate AutoGen code and makefile\r
1966 if not self.SkipAutoGen or self.Target == 'genc':\r
1967 Ma.CreateCodeFile(True)\r
1968 if self.Target == "genc":\r
1969 continue\r
1970\r
1971 if not self.SkipAutoGen or self.Target == 'genmake':\r
37de70b7
YZ
1972 if CmdListDict and self.Fdf and (Module.File, Arch) in CmdListDict:\r
1973 Ma.CreateMakeFile(True, CmdListDict[Module.File, Arch])\r
1974 del CmdListDict[Module.File, Arch]\r
1975 else:\r
1976 Ma.CreateMakeFile(True)\r
52302d4d
LG
1977 if self.Target == "genmake":\r
1978 continue\r
a0a2cd1e 1979 self.BuildModules.append(Ma)\r
e8a47801 1980 self.Progress.Stop("done!")\r
1b8eca8b
YZ
1981 self.AutoGenTime += int(round((time.time() - AutoGenStart)))\r
1982 MakeStart = time.time()\r
a0a2cd1e 1983 for Ma in self.BuildModules:\r
52302d4d 1984 # Generate build task for the module\r
a0a2cd1e
FB
1985 if not Ma.IsBinaryModule:\r
1986 Bt = BuildTask.New(ModuleMakeUnit(Ma, self.Target))\r
52302d4d
LG
1987 # Break build if any build thread has error\r
1988 if BuildTask.HasError():\r
1989 # we need a full version of makefile for platform\r
1990 ExitFlag.set()\r
1991 BuildTask.WaitForComplete()\r
1992 Pa.CreateMakeFile(False)\r
1993 EdkLogger.error("build", BUILD_ERROR, "Failed to build module", ExtraData=GlobalData.gBuildingModule)\r
1994 # Start task scheduler\r
1995 if not BuildTask.IsOnGoing():\r
1996 BuildTask.StartScheduler(self.ThreadNumber, ExitFlag)\r
1997\r
1998 # in case there's an interruption. we need a full version of makefile for platform\r
1999 Pa.CreateMakeFile(False)\r
2000 if BuildTask.HasError():\r
2001 EdkLogger.error("build", BUILD_ERROR, "Failed to build module", ExtraData=GlobalData.gBuildingModule)\r
1b8eca8b 2002 self.MakeTime += int(round((time.time() - MakeStart)))\r
52302d4d 2003\r
1b8eca8b 2004 MakeContiue = time.time()\r
2f818ed0 2005\r
64b2609f 2006 #\r
52302d4d
LG
2007 #\r
2008 # All modules have been put in build tasks queue. Tell task scheduler\r
2009 # to exit if all tasks are completed\r
2010 #\r
2011 ExitFlag.set()\r
2012 BuildTask.WaitForComplete()\r
a0a2cd1e 2013 self.CreateAsBuiltInf()\r
1b8eca8b 2014 self.MakeTime += int(round((time.time() - MakeContiue)))\r
52302d4d
LG
2015 #\r
2016 # Check for build error, and raise exception if one\r
2017 # has been signaled.\r
2018 #\r
2019 if BuildTask.HasError():\r
2020 EdkLogger.error("build", BUILD_ERROR, "Failed to build module", ExtraData=GlobalData.gBuildingModule)\r
2021\r
2022 # Create MAP file when Load Fix Address is enabled.\r
636f2be6 2023 if self.Target in ["", "all", "fds"]:\r
0d2711a6 2024 for Arch in Wa.ArchList:\r
52302d4d
LG
2025 #\r
2026 # Check whether the set fix address is above 4G for 32bit image.\r
2027 #\r
2028 if (Arch == 'IA32' or Arch == 'ARM') and self.LoadFixAddress != 0xFFFFFFFFFFFFFFFF and self.LoadFixAddress >= 0x100000000:\r
2029 EdkLogger.error("build", PARAMETER_INVALID, "FIX_LOAD_TOP_MEMORY_ADDRESS can't be set to larger than or equal to 4G for the platorm with IA32 or ARM arch modules")\r
2030 #\r
2031 # Get Module List\r
2032 #\r
636f2be6 2033 ModuleList = {}\r
52302d4d
LG
2034 for Pa in Wa.AutoGenObjectList:\r
2035 for Ma in Pa.ModuleAutoGenList:\r
4231a819 2036 if Ma is None:\r
52302d4d
LG
2037 continue\r
2038 if not Ma.IsLibrary:\r
636f2be6 2039 ModuleList[Ma.Guid.upper()] = Ma\r
52302d4d
LG
2040 #\r
2041 # Rebase module to the preferred memory address before GenFds\r
2042 #\r
d943b0c3 2043 MapBuffer = []\r
636f2be6
LG
2044 if self.LoadFixAddress != 0:\r
2045 self._CollectModuleMapBuffer(MapBuffer, ModuleList)\r
52302d4d 2046\r
0d2711a6 2047 if self.Fdf:\r
f3decdc3
LG
2048 #\r
2049 # Generate FD image if there's a FDF file found\r
2050 #\r
1b8eca8b 2051 GenFdsStart = time.time()\r
370544d1
DL
2052 if GenFdsApi(Wa.GenFdsCommandDict, self.Db):\r
2053 EdkLogger.error("build", COMMAND_FAILURE)\r
03af2753 2054\r
52302d4d
LG
2055 #\r
2056 # Create MAP file for all platform FVs after GenFds.\r
2057 #\r
636f2be6 2058 self._CollectFvMapBuffer(MapBuffer, Wa, ModuleList)\r
1b8eca8b 2059 self.GenFdsTime += int(round((time.time() - GenFdsStart)))\r
52302d4d
LG
2060 #\r
2061 # Save MAP buffer into MAP file.\r
2062 #\r
2063 self._SaveMapFile(MapBuffer, Wa)\r
2064\r
2065 ## Generate GuidedSectionTools.txt in the FV directories.\r
2066 #\r
2067 def CreateGuidedSectionToolsFile(self):\r
0d2711a6
LG
2068 for BuildTarget in self.BuildTargetList:\r
2069 for ToolChain in self.ToolChainList:\r
2070 Wa = WorkspaceAutoGen(\r
2071 self.WorkspaceDir,\r
2072 self.PlatformFile,\r
2073 BuildTarget,\r
2074 ToolChain,\r
2075 self.ArchList,\r
2076 self.BuildDatabase,\r
2077 self.TargetTxt,\r
2078 self.ToolDef,\r
2079 self.Fdf,\r
2080 self.FdList,\r
2081 self.FvList,\r
2082 self.CapList,\r
2083 self.SkuId,\r
2084 self.UniFlag\r
2085 )\r
2086 FvDir = Wa.FvDir\r
2087 if not os.path.exists(FvDir):\r
2088 continue\r
2089\r
4afd3d04 2090 for Arch in self.ArchList:\r
52302d4d
LG
2091 # Build up the list of supported architectures for this build\r
2092 prefix = '%s_%s_%s_' % (BuildTarget, ToolChain, Arch)\r
4afd3d04 2093\r
52302d4d
LG
2094 # Look through the tool definitions for GUIDed tools\r
2095 guidAttribs = []\r
3a041437 2096 for (attrib, value) in self.ToolDef.ToolsDefTxtDictionary.items():\r
52302d4d
LG
2097 if attrib.upper().endswith('_GUID'):\r
2098 split = attrib.split('_')\r
2099 thisPrefix = '_'.join(split[0:3]) + '_'\r
2100 if thisPrefix == prefix:\r
2101 guid = self.ToolDef.ToolsDefTxtDictionary[attrib]\r
2102 guid = guid.lower()\r
2103 toolName = split[3]\r
2104 path = '_'.join(split[0:4]) + '_PATH'\r
2105 path = self.ToolDef.ToolsDefTxtDictionary[path]\r
2106 path = self.GetFullPathOfTool(path)\r
2107 guidAttribs.append((guid, toolName, path))\r
4afd3d04 2108\r
52302d4d
LG
2109 # Write out GuidedSecTools.txt\r
2110 toolsFile = os.path.join(FvDir, 'GuidedSectionTools.txt')\r
2111 toolsFile = open(toolsFile, 'wt')\r
2112 for guidedSectionTool in guidAttribs:\r
72443dd2 2113 print(' '.join(guidedSectionTool), file=toolsFile)\r
52302d4d
LG
2114 toolsFile.close()\r
2115\r
2116 ## Returns the full path of the tool.\r
2117 #\r
2118 def GetFullPathOfTool (self, tool):\r
2119 if os.path.exists(tool):\r
2120 return os.path.realpath(tool)\r
2121 else:\r
2122 # We need to search for the tool using the\r
2123 # PATH environment variable.\r
2124 for dirInPath in os.environ['PATH'].split(os.pathsep):\r
2125 foundPath = os.path.join(dirInPath, tool)\r
2126 if os.path.exists(foundPath):\r
2127 return os.path.realpath(foundPath)\r
2128\r
2129 # If the tool was not found in the path then we just return\r
2130 # the input tool.\r
2131 return tool\r
2132\r
2133 ## Launch the module or platform build\r
2134 #\r
2135 def Launch(self):\r
0d2711a6 2136 if not self.ModuleFile:\r
52302d4d
LG
2137 if not self.SpawnMode or self.Target not in ["", "all"]:\r
2138 self.SpawnMode = False\r
2139 self._BuildPlatform()\r
2140 else:\r
2141 self._MultiThreadBuildPlatform()\r
2142 self.CreateGuidedSectionToolsFile()\r
2143 else:\r
2144 self.SpawnMode = False\r
2145 self._BuildModule()\r
2146\r
bcbdc755 2147 if self.Target == 'cleanall':\r
bcbdc755
YL
2148 RemoveDirectory(os.path.dirname(GlobalData.gDatabasePath), True)\r
2149\r
a0a2cd1e
FB
2150 def CreateAsBuiltInf(self):\r
2151 for Module in self.BuildModules:\r
2152 Module.CreateAsBuiltInf()\r
83397f95
YZ
2153 for Module in self.HashSkipModules:\r
2154 Module.CreateAsBuiltInf(True)\r
a0a2cd1e 2155 self.BuildModules = []\r
83397f95 2156 self.HashSkipModules = []\r
52302d4d
LG
2157 ## Do some clean-up works when error occurred\r
2158 def Relinquish(self):\r
2159 OldLogLevel = EdkLogger.GetLevel()\r
2160 EdkLogger.SetLevel(EdkLogger.ERROR)\r
52302d4d
LG
2161 Utils.Progressor.Abort()\r
2162 if self.SpawnMode == True:\r
2163 BuildTask.Abort()\r
2164 EdkLogger.SetLevel(OldLogLevel)\r
2165\r
52302d4d
LG
2166def ParseDefines(DefineList=[]):\r
2167 DefineDict = {}\r
4231a819 2168 if DefineList is not None:\r
52302d4d
LG
2169 for Define in DefineList:\r
2170 DefineTokenList = Define.split("=", 1)\r
0d2711a6
LG
2171 if not GlobalData.gMacroNamePattern.match(DefineTokenList[0]):\r
2172 EdkLogger.error('build', FORMAT_INVALID,\r
2173 "The macro name must be in the pattern [A-Z][A-Z0-9_]*",\r
2174 ExtraData=DefineTokenList[0])\r
4afd3d04 2175\r
52302d4d 2176 if len(DefineTokenList) == 1:\r
0d2711a6 2177 DefineDict[DefineTokenList[0]] = "TRUE"\r
52302d4d
LG
2178 else:\r
2179 DefineDict[DefineTokenList[0]] = DefineTokenList[1].strip()\r
2180 return DefineDict\r
2181\r
2182gParamCheck = []\r
2183def SingleCheckCallback(option, opt_str, value, parser):\r
2184 if option not in gParamCheck:\r
2185 setattr(parser.values, option.dest, value)\r
2186 gParamCheck.append(option)\r
2187 else:\r
2188 parser.error("Option %s only allows one instance in command line!" % option)\r
2189\r
1b8eca8b
YZ
2190def LogBuildTime(Time):\r
2191 if Time:\r
2192 TimeDurStr = ''\r
2193 TimeDur = time.gmtime(Time)\r
2194 if TimeDur.tm_yday > 1:\r
2195 TimeDurStr = time.strftime("%H:%M:%S", TimeDur) + ", %d day(s)" % (TimeDur.tm_yday - 1)\r
2196 else:\r
2197 TimeDurStr = time.strftime("%H:%M:%S", TimeDur)\r
2198 return TimeDurStr\r
2199 else:\r
2200 return None\r
2201\r
52302d4d
LG
2202## Parse command line options\r
2203#\r
2204# Using standard Python module optparse to parse command line option of this tool.\r
2205#\r
2206# @retval Opt A optparse.Values object containing the parsed options\r
2207# @retval Args Target of build command\r
2208#\r
2209def MyOptionParser():\r
47fea6af 2210 Parser = OptionParser(description=__copyright__, version=__version__, prog="build.exe", usage="%prog [options] [all|fds|genc|genmake|clean|cleanall|cleanlib|modules|libraries|run]")\r
39879ef2
FB
2211 Parser.add_option("-a", "--arch", action="append", type="choice", choices=['IA32', 'X64', 'EBC', 'ARM', 'AARCH64'], dest="TargetArch",\r
2212 help="ARCHS is one of list: IA32, X64, ARM, AARCH64 or EBC, which overrides target.txt's TARGET_ARCH definition. To specify more archs, please repeat this option.")\r
52302d4d
LG
2213 Parser.add_option("-p", "--platform", action="callback", type="string", dest="PlatformFile", callback=SingleCheckCallback,\r
2214 help="Build the platform specified by the DSC file name argument, overriding target.txt's ACTIVE_PLATFORM definition.")\r
2215 Parser.add_option("-m", "--module", action="callback", type="string", dest="ModuleFile", callback=SingleCheckCallback,\r
2216 help="Build the module specified by the INF file name argument.")\r
64b2609f
LG
2217 Parser.add_option("-b", "--buildtarget", type="string", dest="BuildTarget", help="Using the TARGET to build the platform, overriding target.txt's TARGET definition.",\r
2218 action="append")\r
52302d4d
LG
2219 Parser.add_option("-t", "--tagname", action="append", type="string", dest="ToolChain",\r
2220 help="Using the Tool Chain Tagname to build the platform, overriding target.txt's TOOL_CHAIN_TAG definition.")\r
2221 Parser.add_option("-x", "--sku-id", action="callback", type="string", dest="SkuId", callback=SingleCheckCallback,\r
2222 help="Using this name of SKU ID to build the platform, overriding SKUID_IDENTIFIER in DSC file.")\r
2223\r
2224 Parser.add_option("-n", action="callback", type="int", dest="ThreadNumber", callback=SingleCheckCallback,\r
2052cb67
YZ
2225 help="Build the platform using multi-threaded compiler. The value overrides target.txt's MAX_CONCURRENT_THREAD_NUMBER. When value is set to 0, tool automatically detect number of "\\r
2226 "processor threads, set value to 1 means disable multi-thread build, and set value to more than 1 means user specify the threads number to build.")\r
52302d4d
LG
2227\r
2228 Parser.add_option("-f", "--fdf", action="callback", type="string", dest="FdfFile", callback=SingleCheckCallback,\r
2229 help="The name of the FDF file to use, which overrides the setting in the DSC file.")\r
2230 Parser.add_option("-r", "--rom-image", action="append", type="string", dest="RomImage", default=[],\r
2231 help="The name of FD to be generated. The name must be from [FD] section in FDF file.")\r
2232 Parser.add_option("-i", "--fv-image", action="append", type="string", dest="FvImage", default=[],\r
2233 help="The name of FV to be generated. The name must be from [FV] section in FDF file.")\r
4234283c
LG
2234 Parser.add_option("-C", "--capsule-image", action="append", type="string", dest="CapName", default=[],\r
2235 help="The name of Capsule to be generated. The name must be from [Capsule] section in FDF file.")\r
52302d4d
LG
2236 Parser.add_option("-u", "--skip-autogen", action="store_true", dest="SkipAutoGen", help="Skip AutoGen step.")\r
2237 Parser.add_option("-e", "--re-parse", action="store_true", dest="Reparse", help="Re-parse all meta-data files.")\r
2238\r
0d2711a6 2239 Parser.add_option("-c", "--case-insensitive", action="store_true", dest="CaseInsensitive", default=False, help="Don't check case of file name.")\r
52302d4d
LG
2240\r
2241 Parser.add_option("-w", "--warning-as-error", action="store_true", dest="WarningAsError", help="Treat warning in tools as error.")\r
2242 Parser.add_option("-j", "--log", action="store", dest="LogFile", help="Put log in specified file as well as on console.")\r
2243\r
2244 Parser.add_option("-s", "--silent", action="store_true", type=None, dest="SilentMode",\r
2245 help="Make use of silent mode of (n)make.")\r
2246 Parser.add_option("-q", "--quiet", action="store_true", type=None, help="Disable all messages except FATAL ERRORS.")\r
2247 Parser.add_option("-v", "--verbose", action="store_true", type=None, help="Turn on verbose output with informational messages printed, "\\r
2248 "including library instances selected, final dependency expression, "\\r
2249 "and warning messages, etc.")\r
2250 Parser.add_option("-d", "--debug", action="store", type="int", help="Enable debug messages at specified level.")\r
2251 Parser.add_option("-D", "--define", action="append", type="string", dest="Macros", help="Macro: \"Name [= Value]\".")\r
2252\r
2253 Parser.add_option("-y", "--report-file", action="store", dest="ReportFile", help="Create/overwrite the report to the specified filename.")\r
ccaa7754 2254 Parser.add_option("-Y", "--report-type", action="append", type="choice", choices=['PCD', 'LIBRARY', 'FLASH', 'DEPEX', 'BUILD_FLAGS', 'FIXED_ADDRESS', 'HASH', 'EXECUTION_ORDER'], dest="ReportType", default=[],\r
eca5be7a 2255 help="Flags that control the type of build report to generate. Must be one of: [PCD, LIBRARY, FLASH, DEPEX, BUILD_FLAGS, FIXED_ADDRESS, HASH, EXECUTION_ORDER]. "\\r
302860bf 2256 "To specify more than one flag, repeat this option on the command line and the default flag set is [PCD, LIBRARY, FLASH, DEPEX, HASH, BUILD_FLAGS, FIXED_ADDRESS]")\r
f3decdc3
LG
2257 Parser.add_option("-F", "--flag", action="store", type="string", dest="Flag",\r
2258 help="Specify the specific option to parse EDK UNI file. Must be one of: [-c, -s]. -c is for EDK framework UNI file, and -s is for EDK UEFI UNI file. "\\r
2259 "This option can also be specified by setting *_*_*_BUILD_FLAGS in [BuildOptions] section of platform DSC. If they are both specified, this value "\\r
2260 "will override the setting in [BuildOptions] section of platform DSC.")\r
0d2711a6 2261 Parser.add_option("-N", "--no-cache", action="store_true", dest="DisableCache", default=False, help="Disable build cache mechanism")\r
97fa0ee9
YL
2262 Parser.add_option("--conf", action="store", type="string", dest="ConfDirectory", help="Specify the customized Conf directory.")\r
2263 Parser.add_option("--check-usage", action="store_true", dest="CheckUsage", default=False, help="Check usage content of entries listed in INF file.")\r
fae62ff2 2264 Parser.add_option("--ignore-sources", action="store_true", dest="IgnoreSources", default=False, help="Focus to a binary build and ignore all source files")\r
d7cd3356 2265 Parser.add_option("--pcd", action="append", dest="OptionPcd", help="Set PCD value by command line. Format: \"PcdName=Value\" ")\r
725cdb8f 2266 Parser.add_option("-l", "--cmd-len", action="store", type="int", dest="CommandLength", help="Specify the maximum line length of build command. Default is 4096.")\r
36d083ef
YZ
2267 Parser.add_option("--hash", action="store_true", dest="UseHashCache", default=False, help="Enable hash-based caching during build process.")\r
2268 Parser.add_option("--binary-destination", action="store", type="string", dest="BinCacheDest", help="Generate a cache of binary files in the specified directory.")\r
2269 Parser.add_option("--binary-source", action="store", type="string", dest="BinCacheSource", help="Consume a cache of binary files from the specified directory.")\r
37de70b7 2270 Parser.add_option("--genfds-multi-thread", action="store_true", dest="GenfdsMultiThread", default=False, help="Enable GenFds multi thread to generate ffs file.")\r
47fea6af 2271 (Opt, Args) = Parser.parse_args()\r
52302d4d
LG
2272 return (Opt, Args)\r
2273\r
2274## Tool entrance method\r
2275#\r
2276# This method mainly dispatch specific methods per the command line options.\r
2277# If no error found, return zero value so the caller of this tool can know\r
2278# if it's executed successfully or not.\r
2279#\r
2280# @retval 0 Tool was successful\r
2281# @retval 1 Tool failed\r
2282#\r
2283def Main():\r
2284 StartTime = time.time()\r
2285\r
2286 # Initialize log system\r
2287 EdkLogger.Initialize()\r
f0dc69e6 2288 GlobalData.gCommand = sys.argv[1:]\r
52302d4d
LG
2289 #\r
2290 # Parse the options and args\r
2291 #\r
2292 (Option, Target) = MyOptionParser()\r
2293 GlobalData.gOptions = Option\r
2294 GlobalData.gCaseInsensitive = Option.CaseInsensitive\r
2295\r
2296 # Set log level\r
4231a819 2297 if Option.verbose is not None:\r
52302d4d 2298 EdkLogger.SetLevel(EdkLogger.VERBOSE)\r
4231a819 2299 elif Option.quiet is not None:\r
52302d4d 2300 EdkLogger.SetLevel(EdkLogger.QUIET)\r
4231a819 2301 elif Option.debug is not None:\r
52302d4d
LG
2302 EdkLogger.SetLevel(Option.debug + 1)\r
2303 else:\r
2304 EdkLogger.SetLevel(EdkLogger.INFO)\r
2305\r
4231a819 2306 if Option.LogFile is not None:\r
52302d4d
LG
2307 EdkLogger.SetLogFile(Option.LogFile)\r
2308\r
2309 if Option.WarningAsError == True:\r
2310 EdkLogger.SetWarningAsError()\r
2311\r
2312 if platform.platform().find("Windows") >= 0:\r
2313 GlobalData.gIsWindows = True\r
2314 else:\r
2315 GlobalData.gIsWindows = False\r
2316\r
6780eef1
LG
2317 EdkLogger.quiet("Build environment: %s" % platform.platform())\r
2318 EdkLogger.quiet(time.strftime("Build start time: %H:%M:%S, %b.%d %Y\n", time.localtime()));\r
52302d4d
LG
2319 ReturnCode = 0\r
2320 MyBuild = None\r
09ae0f11 2321 BuildError = True\r
52302d4d
LG
2322 try:\r
2323 if len(Target) == 0:\r
2324 Target = "all"\r
2325 elif len(Target) >= 2:\r
2326 EdkLogger.error("build", OPTION_NOT_SUPPORTED, "More than one targets are not supported.",\r
47fea6af 2327 ExtraData="Please select one of: %s" % (' '.join(gSupportedTarget)))\r
52302d4d
LG
2328 else:\r
2329 Target = Target[0].lower()\r
2330\r
2331 if Target not in gSupportedTarget:\r
2332 EdkLogger.error("build", OPTION_NOT_SUPPORTED, "Not supported target [%s]." % Target,\r
47fea6af 2333 ExtraData="Please select one of: %s" % (' '.join(gSupportedTarget)))\r
52302d4d 2334\r
52302d4d
LG
2335 #\r
2336 # Check environment variable: EDK_TOOLS_PATH, WORKSPACE, PATH\r
2337 #\r
2338 CheckEnvVariable()\r
0d2711a6
LG
2339 GlobalData.gCommandLineDefines.update(ParseDefines(Option.Macros))\r
2340\r
52302d4d
LG
2341 Workspace = os.getenv("WORKSPACE")\r
2342 #\r
2343 # Get files real name in workspace dir\r
2344 #\r
2345 GlobalData.gAllFiles = Utils.DirCache(Workspace)\r
2346\r
2347 WorkingDirectory = os.getcwd()\r
2348 if not Option.ModuleFile:\r
2349 FileList = glob.glob(os.path.normpath(os.path.join(WorkingDirectory, '*.inf')))\r
2350 FileNum = len(FileList)\r
2351 if FileNum >= 2:\r
2352 EdkLogger.error("build", OPTION_NOT_SUPPORTED, "There are %d INF files in %s." % (FileNum, WorkingDirectory),\r
2353 ExtraData="Please use '-m <INF_FILE_PATH>' switch to choose one.")\r
2354 elif FileNum == 1:\r
2355 Option.ModuleFile = NormFile(FileList[0], Workspace)\r
2356\r
2357 if Option.ModuleFile:\r
2358 if os.path.isabs (Option.ModuleFile):\r
2359 if os.path.normcase (os.path.normpath(Option.ModuleFile)).find (Workspace) == 0:\r
2360 Option.ModuleFile = NormFile(os.path.normpath(Option.ModuleFile), Workspace)\r
2361 Option.ModuleFile = PathClass(Option.ModuleFile, Workspace)\r
2362 ErrorCode, ErrorInfo = Option.ModuleFile.Validate(".inf", False)\r
2363 if ErrorCode != 0:\r
2364 EdkLogger.error("build", ErrorCode, ExtraData=ErrorInfo)\r
2365\r
4231a819 2366 if Option.PlatformFile is not None:\r
52302d4d
LG
2367 if os.path.isabs (Option.PlatformFile):\r
2368 if os.path.normcase (os.path.normpath(Option.PlatformFile)).find (Workspace) == 0:\r
2369 Option.PlatformFile = NormFile(os.path.normpath(Option.PlatformFile), Workspace)\r
2370 Option.PlatformFile = PathClass(Option.PlatformFile, Workspace)\r
52302d4d 2371\r
4231a819 2372 if Option.FdfFile is not None:\r
52302d4d
LG
2373 if os.path.isabs (Option.FdfFile):\r
2374 if os.path.normcase (os.path.normpath(Option.FdfFile)).find (Workspace) == 0:\r
2375 Option.FdfFile = NormFile(os.path.normpath(Option.FdfFile), Workspace)\r
2376 Option.FdfFile = PathClass(Option.FdfFile, Workspace)\r
2377 ErrorCode, ErrorInfo = Option.FdfFile.Validate(".fdf", False)\r
2378 if ErrorCode != 0:\r
2379 EdkLogger.error("build", ErrorCode, ExtraData=ErrorInfo)\r
2380\r
4231a819 2381 if Option.Flag is not None and Option.Flag not in ['-c', '-s']:\r
f3decdc3
LG
2382 EdkLogger.error("build", OPTION_VALUE_INVALID, "UNI flag must be one of -c or -s")\r
2383\r
0d2711a6 2384 MyBuild = Build(Target, Workspace, Option)\r
64b2609f 2385 GlobalData.gCommandLineDefines['ARCH'] = ' '.join(MyBuild.ArchList)\r
f0dc69e6
YZ
2386 if not (MyBuild.LaunchPrebuildFlag and os.path.exists(MyBuild.PlatformBuildPath)):\r
2387 MyBuild.Launch()\r
2f818ed0 2388\r
09ae0f11
YL
2389 #\r
2390 # All job done, no error found and no exception raised\r
2391 #\r
2392 BuildError = False\r
5b0671c1 2393 except FatalError as X:\r
4231a819 2394 if MyBuild is not None:\r
52302d4d
LG
2395 # for multi-thread build exits safely\r
2396 MyBuild.Relinquish()\r
4231a819 2397 if Option is not None and Option.debug is not None:\r
52302d4d
LG
2398 EdkLogger.quiet("(Python %s on %s) " % (platform.python_version(), sys.platform) + traceback.format_exc())\r
2399 ReturnCode = X.args[0]\r
5b0671c1 2400 except Warning as X:\r
52302d4d 2401 # error from Fdf parser\r
4231a819 2402 if MyBuild is not None:\r
52302d4d
LG
2403 # for multi-thread build exits safely\r
2404 MyBuild.Relinquish()\r
4231a819 2405 if Option is not None and Option.debug is not None:\r
52302d4d
LG
2406 EdkLogger.quiet("(Python %s on %s) " % (platform.python_version(), sys.platform) + traceback.format_exc())\r
2407 else:\r
47fea6af 2408 EdkLogger.error(X.ToolName, FORMAT_INVALID, File=X.FileName, Line=X.LineNumber, ExtraData=X.Message, RaiseError=False)\r
52302d4d
LG
2409 ReturnCode = FORMAT_INVALID\r
2410 except KeyboardInterrupt:\r
2411 ReturnCode = ABORT_ERROR\r
4231a819 2412 if Option is not None and Option.debug is not None:\r
52302d4d
LG
2413 EdkLogger.quiet("(Python %s on %s) " % (platform.python_version(), sys.platform) + traceback.format_exc())\r
2414 except:\r
4231a819 2415 if MyBuild is not None:\r
52302d4d
LG
2416 # for multi-thread build exits safely\r
2417 MyBuild.Relinquish()\r
2418\r
2419 # try to get the meta-file from the object causing exception\r
2420 Tb = sys.exc_info()[-1]\r
2421 MetaFile = GlobalData.gProcessingFile\r
4231a819 2422 while Tb is not None:\r
52302d4d
LG
2423 if 'self' in Tb.tb_frame.f_locals and hasattr(Tb.tb_frame.f_locals['self'], 'MetaFile'):\r
2424 MetaFile = Tb.tb_frame.f_locals['self'].MetaFile\r
2425 Tb = Tb.tb_next\r
2426 EdkLogger.error(\r
2427 "\nbuild",\r
2428 CODE_ERROR,\r
2429 "Unknown fatal error when processing [%s]" % MetaFile,\r
3a0f8bde 2430 ExtraData="\n(Please send email to edk2-devel@lists.01.org for help, attaching following call stack trace!)\n",\r
52302d4d
LG
2431 RaiseError=False\r
2432 )\r
d0acc87a 2433 EdkLogger.quiet("(Python %s on %s) " % (platform.python_version(), sys.platform) + traceback.format_exc())\r
52302d4d
LG
2434 ReturnCode = CODE_ERROR\r
2435 finally:\r
2436 Utils.Progressor.Abort()\r
97fa0ee9 2437 Utils.ClearDuplicatedInf()\r
52302d4d
LG
2438\r
2439 if ReturnCode == 0:\r
f0dc69e6 2440 try:\r
91048b0d 2441 MyBuild.LaunchPostbuild()\r
f0dc69e6
YZ
2442 Conclusion = "Done"\r
2443 except:\r
2444 Conclusion = "Failed"\r
52302d4d
LG
2445 elif ReturnCode == ABORT_ERROR:\r
2446 Conclusion = "Aborted"\r
2447 else:\r
2448 Conclusion = "Failed"\r
2449 FinishTime = time.time()\r
4234283c
LG
2450 BuildDuration = time.gmtime(int(round(FinishTime - StartTime)))\r
2451 BuildDurationStr = ""\r
2452 if BuildDuration.tm_yday > 1:\r
47fea6af 2453 BuildDurationStr = time.strftime("%H:%M:%S", BuildDuration) + ", %d day(s)" % (BuildDuration.tm_yday - 1)\r
4234283c
LG
2454 else:\r
2455 BuildDurationStr = time.strftime("%H:%M:%S", BuildDuration)\r
4231a819 2456 if MyBuild is not None:\r
09ae0f11 2457 if not BuildError:\r
1b8eca8b 2458 MyBuild.BuildReport.GenerateReport(BuildDurationStr, LogBuildTime(MyBuild.AutoGenTime), LogBuildTime(MyBuild.MakeTime), LogBuildTime(MyBuild.GenFdsTime))\r
2f818ed0 2459\r
52302d4d 2460 EdkLogger.SetLevel(EdkLogger.QUIET)\r
6780eef1
LG
2461 EdkLogger.quiet("\n- %s -" % Conclusion)\r
2462 EdkLogger.quiet(time.strftime("Build end time: %H:%M:%S, %b.%d %Y", time.localtime()))\r
4234283c 2463 EdkLogger.quiet("Build total time: %s\n" % BuildDurationStr)\r
52302d4d
LG
2464 return ReturnCode\r
2465\r
2466if __name__ == '__main__':\r
2467 r = Main()\r
2468 ## 0-127 is a safe return range, and 1 is a standard default error\r
2469 if r < 0 or r > 127: r = 1\r
2470 sys.exit(r)\r
2471\r