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