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