]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Source/Python/AutoGen/GenMake.py
SecurityPkg: Tcg2Smm: Refine type cast in pointer abstraction
[mirror_edk2.git] / BaseTools / Source / Python / AutoGen / GenMake.py
CommitLineData
f51461c8
LG
1## @file\r
2# Create makefile for MS nmake and GNU make\r
3#\r
db55dac7 4# Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR>\r
f51461c8
LG
5# This program and the accompanying materials\r
6# are licensed and made available under the terms and conditions of the BSD License\r
7# which accompanies this distribution. The full text of the license may be found at\r
8# http://opensource.org/licenses/bsd-license.php\r
9#\r
10# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12#\r
13\r
14## Import Modules\r
15#\r
1be2ed90 16import Common.LongFilePathOs as os\r
f51461c8
LG
17import sys\r
18import string\r
19import re\r
20import os.path as path\r
1be2ed90 21from Common.LongFilePathSupport import OpenLongFilePath as open\r
05cc51ad 22from Common.MultipleWorkspace import MultipleWorkspace as mws\r
f51461c8
LG
23from Common.BuildToolError import *\r
24from Common.Misc import *\r
25from Common.String import *\r
26from BuildEngine import *\r
27import Common.GlobalData as GlobalData\r
28\r
29## Regular expression for finding header file inclusions\r
47fea6af 30gIncludePattern = re.compile(r"^[ \t]*#?[ \t]*include(?:[ \t]*(?:\\(?:\r\n|\r|\n))*[ \t]*)*(?:\(?[\"<]?[ \t]*)([-\w.\\/() \t]+)(?:[ \t]*[\">]?\)?)", re.MULTILINE | re.UNICODE | re.IGNORECASE)\r
f51461c8
LG
31\r
32## Regular expression for matching macro used in header file inclusion\r
33gMacroPattern = re.compile("([_A-Z][_A-Z0-9]*)[ \t]*\((.+)\)", re.UNICODE)\r
34\r
35gIsFileMap = {}\r
36\r
37## pattern for include style in Edk.x code\r
38gProtocolDefinition = "Protocol/%(HeaderKey)s/%(HeaderKey)s.h"\r
39gGuidDefinition = "Guid/%(HeaderKey)s/%(HeaderKey)s.h"\r
40gArchProtocolDefinition = "ArchProtocol/%(HeaderKey)s/%(HeaderKey)s.h"\r
41gPpiDefinition = "Ppi/%(HeaderKey)s/%(HeaderKey)s.h"\r
42gIncludeMacroConversion = {\r
43 "EFI_PROTOCOL_DEFINITION" : gProtocolDefinition,\r
44 "EFI_GUID_DEFINITION" : gGuidDefinition,\r
45 "EFI_ARCH_PROTOCOL_DEFINITION" : gArchProtocolDefinition,\r
46 "EFI_PROTOCOL_PRODUCER" : gProtocolDefinition,\r
47 "EFI_PROTOCOL_CONSUMER" : gProtocolDefinition,\r
48 "EFI_PROTOCOL_DEPENDENCY" : gProtocolDefinition,\r
49 "EFI_ARCH_PROTOCOL_PRODUCER" : gArchProtocolDefinition,\r
50 "EFI_ARCH_PROTOCOL_CONSUMER" : gArchProtocolDefinition,\r
51 "EFI_ARCH_PROTOCOL_DEPENDENCY" : gArchProtocolDefinition,\r
52 "EFI_PPI_DEFINITION" : gPpiDefinition,\r
53 "EFI_PPI_PRODUCER" : gPpiDefinition,\r
54 "EFI_PPI_CONSUMER" : gPpiDefinition,\r
55 "EFI_PPI_DEPENDENCY" : gPpiDefinition,\r
56}\r
57\r
58## default makefile type\r
59gMakeType = ""\r
60if sys.platform == "win32":\r
61 gMakeType = "nmake"\r
62else:\r
63 gMakeType = "gmake"\r
64\r
65\r
66## BuildFile class\r
67#\r
68# This base class encapsules build file and its generation. It uses template to generate\r
69# the content of build file. The content of build file will be got from AutoGen objects.\r
70#\r
71class BuildFile(object):\r
72 ## template used to generate the build file (i.e. makefile if using make)\r
73 _TEMPLATE_ = TemplateString('')\r
74\r
75 _DEFAULT_FILE_NAME_ = "Makefile"\r
76\r
77 ## default file name for each type of build file\r
78 _FILE_NAME_ = {\r
79 "nmake" : "Makefile",\r
80 "gmake" : "GNUmakefile"\r
81 }\r
82\r
83 ## Fixed header string for makefile\r
84 _MAKEFILE_HEADER = '''#\r
85# DO NOT EDIT\r
86# This file is auto-generated by build utility\r
87#\r
88# Module Name:\r
89#\r
90# %s\r
91#\r
92# Abstract:\r
93#\r
94# Auto-generated makefile for building modules, libraries or platform\r
95#\r
96 '''\r
97\r
98 ## Header string for each type of build file\r
99 _FILE_HEADER_ = {\r
100 "nmake" : _MAKEFILE_HEADER % _FILE_NAME_["nmake"],\r
101 "gmake" : _MAKEFILE_HEADER % _FILE_NAME_["gmake"]\r
102 }\r
103\r
104 ## shell commands which can be used in build file in the form of macro\r
105 # $(CP) copy file command\r
106 # $(MV) move file command\r
107 # $(RM) remove file command\r
108 # $(MD) create dir command\r
109 # $(RD) remove dir command\r
110 #\r
111 _SHELL_CMD_ = {\r
112 "nmake" : {\r
113 "CP" : "copy /y",\r
114 "MV" : "move /y",\r
115 "RM" : "del /f /q",\r
116 "MD" : "mkdir",\r
117 "RD" : "rmdir /s /q",\r
118 },\r
119\r
120 "gmake" : {\r
121 "CP" : "cp -f",\r
122 "MV" : "mv -f",\r
123 "RM" : "rm -f",\r
124 "MD" : "mkdir -p",\r
125 "RD" : "rm -r -f",\r
126 }\r
127 }\r
128\r
129 ## directory separator\r
130 _SEP_ = {\r
131 "nmake" : "\\",\r
132 "gmake" : "/"\r
133 }\r
134\r
135 ## directory creation template\r
136 _MD_TEMPLATE_ = {\r
137 "nmake" : 'if not exist %(dir)s $(MD) %(dir)s',\r
138 "gmake" : "$(MD) %(dir)s"\r
139 }\r
140\r
141 ## directory removal template\r
142 _RD_TEMPLATE_ = {\r
143 "nmake" : 'if exist %(dir)s $(RD) %(dir)s',\r
144 "gmake" : "$(RD) %(dir)s"\r
145 }\r
37de70b7
YZ
146 ## cp if exist\r
147 _CP_TEMPLATE_ = {\r
148 "nmake" : 'if exist %(Src)s $(CP) %(Src)s %(Dst)s',\r
149 "gmake" : "test -f %(Src)s && $(CP) %(Src)s %(Dst)s"\r
150 }\r
f51461c8
LG
151\r
152 _CD_TEMPLATE_ = {\r
153 "nmake" : 'if exist %(dir)s cd %(dir)s',\r
154 "gmake" : "test -e %(dir)s && cd %(dir)s"\r
155 }\r
156\r
157 _MAKE_TEMPLATE_ = {\r
158 "nmake" : 'if exist %(file)s "$(MAKE)" $(MAKE_FLAGS) -f %(file)s',\r
159 "gmake" : 'test -e %(file)s && "$(MAKE)" $(MAKE_FLAGS) -f %(file)s'\r
160 }\r
161\r
162 _INCLUDE_CMD_ = {\r
163 "nmake" : '!INCLUDE',\r
164 "gmake" : "include"\r
165 }\r
166\r
167 _INC_FLAG_ = {"MSFT" : "/I", "GCC" : "-I", "INTEL" : "-I", "RVCT" : "-I"}\r
168\r
169 ## Constructor of BuildFile\r
170 #\r
171 # @param AutoGenObject Object of AutoGen class\r
172 #\r
173 def __init__(self, AutoGenObject):\r
174 self._AutoGenObject = AutoGenObject\r
175 self._FileType = gMakeType\r
176\r
177 ## Create build file\r
178 #\r
179 # @param FileType Type of build file. Only nmake and gmake are supported now.\r
180 #\r
181 # @retval TRUE The build file is created or re-created successfully\r
182 # @retval FALSE The build file exists and is the same as the one to be generated\r
183 #\r
184 def Generate(self, FileType=gMakeType):\r
185 if FileType not in self._FILE_NAME_:\r
186 EdkLogger.error("build", PARAMETER_INVALID, "Invalid build type [%s]" % FileType,\r
187 ExtraData="[%s]" % str(self._AutoGenObject))\r
188 self._FileType = FileType\r
189 FileContent = self._TEMPLATE_.Replace(self._TemplateDict)\r
190 FileName = self._FILE_NAME_[FileType]\r
191 return SaveFileOnChange(os.path.join(self._AutoGenObject.MakeFileDir, FileName), FileContent, False)\r
192\r
193 ## Return a list of directory creation command string\r
194 #\r
195 # @param DirList The list of directory to be created\r
196 #\r
197 # @retval list The directory creation command list\r
198 #\r
199 def GetCreateDirectoryCommand(self, DirList):\r
200 return [self._MD_TEMPLATE_[self._FileType] % {'dir':Dir} for Dir in DirList]\r
201\r
202 ## Return a list of directory removal command string\r
203 #\r
204 # @param DirList The list of directory to be removed\r
205 #\r
206 # @retval list The directory removal command list\r
207 #\r
208 def GetRemoveDirectoryCommand(self, DirList):\r
209 return [self._RD_TEMPLATE_[self._FileType] % {'dir':Dir} for Dir in DirList]\r
210\r
211 def PlaceMacro(self, Path, MacroDefinitions={}):\r
212 if Path.startswith("$("):\r
213 return Path\r
214 else:\r
215 PathLength = len(Path)\r
216 for MacroName in MacroDefinitions:\r
217 MacroValue = MacroDefinitions[MacroName]\r
218 MacroValueLength = len(MacroValue)\r
37de70b7
YZ
219 if MacroValueLength == 0:\r
220 continue\r
f51461c8
LG
221 if MacroValueLength <= PathLength and Path.startswith(MacroValue):\r
222 Path = "$(%s)%s" % (MacroName, Path[MacroValueLength:])\r
223 break\r
224 return Path\r
225\r
226## ModuleMakefile class\r
227#\r
228# This class encapsules makefie and its generation for module. It uses template to generate\r
229# the content of makefile. The content of makefile will be got from ModuleAutoGen object.\r
230#\r
231class ModuleMakefile(BuildFile):\r
232 ## template used to generate the makefile for module\r
233 _TEMPLATE_ = TemplateString('''\\r
234${makefile_header}\r
235\r
236#\r
237# Platform Macro Definition\r
238#\r
239PLATFORM_NAME = ${platform_name}\r
240PLATFORM_GUID = ${platform_guid}\r
241PLATFORM_VERSION = ${platform_version}\r
242PLATFORM_RELATIVE_DIR = ${platform_relative_directory}\r
017fb1cd 243PLATFORM_DIR = ${platform_dir}\r
f51461c8
LG
244PLATFORM_OUTPUT_DIR = ${platform_output_directory}\r
245\r
246#\r
247# Module Macro Definition\r
248#\r
249MODULE_NAME = ${module_name}\r
250MODULE_GUID = ${module_guid}\r
867d1cd4 251MODULE_NAME_GUID = ${module_name_guid}\r
f51461c8
LG
252MODULE_VERSION = ${module_version}\r
253MODULE_TYPE = ${module_type}\r
254MODULE_FILE = ${module_file}\r
255MODULE_FILE_BASE_NAME = ${module_file_base_name}\r
256BASE_NAME = $(MODULE_NAME)\r
257MODULE_RELATIVE_DIR = ${module_relative_directory}\r
97fa0ee9 258PACKAGE_RELATIVE_DIR = ${package_relative_directory}\r
01e418d6 259MODULE_DIR = ${module_dir}\r
37de70b7 260FFS_OUTPUT_DIR = ${ffs_output_directory}\r
f51461c8
LG
261\r
262MODULE_ENTRY_POINT = ${module_entry_point}\r
263ARCH_ENTRY_POINT = ${arch_entry_point}\r
264IMAGE_ENTRY_POINT = ${image_entry_point}\r
265\r
266${BEGIN}${module_extra_defines}\r
267${END}\r
268#\r
269# Build Configuration Macro Definition\r
270#\r
271ARCH = ${architecture}\r
272TOOLCHAIN = ${toolchain_tag}\r
273TOOLCHAIN_TAG = ${toolchain_tag}\r
274TARGET = ${build_target}\r
275\r
276#\r
277# Build Directory Macro Definition\r
278#\r
279# PLATFORM_BUILD_DIR = ${platform_build_directory}\r
280BUILD_DIR = ${platform_build_directory}\r
281BIN_DIR = $(BUILD_DIR)${separator}${architecture}\r
282LIB_DIR = $(BIN_DIR)\r
283MODULE_BUILD_DIR = ${module_build_directory}\r
284OUTPUT_DIR = ${module_output_directory}\r
285DEBUG_DIR = ${module_debug_directory}\r
286DEST_DIR_OUTPUT = $(OUTPUT_DIR)\r
287DEST_DIR_DEBUG = $(DEBUG_DIR)\r
288\r
289#\r
290# Shell Command Macro\r
291#\r
292${BEGIN}${shell_command_code} = ${shell_command}\r
293${END}\r
294\r
295#\r
296# Tools definitions specific to this module\r
297#\r
298${BEGIN}${module_tool_definitions}\r
299${END}\r
300MAKE_FILE = ${makefile_path}\r
301\r
302#\r
303# Build Macro\r
304#\r
305${BEGIN}${file_macro}\r
306${END}\r
307\r
308COMMON_DEPS = ${BEGIN}${common_dependency_file} \\\r
309 ${END}\r
310\r
311#\r
312# Overridable Target Macro Definitions\r
313#\r
314FORCE_REBUILD = force_build\r
315INIT_TARGET = init\r
316PCH_TARGET =\r
317BC_TARGET = ${BEGIN}${backward_compatible_target} ${END}\r
318CODA_TARGET = ${BEGIN}${remaining_build_target} \\\r
319 ${END}\r
320\r
321#\r
322# Default target, which will build dependent libraries in addition to source files\r
323#\r
324\r
325all: mbuild\r
326\r
327\r
328#\r
329# Target used when called from platform makefile, which will bypass the build of dependent libraries\r
330#\r
331\r
332pbuild: $(INIT_TARGET) $(BC_TARGET) $(PCH_TARGET) $(CODA_TARGET)\r
333\r
334#\r
335# ModuleTarget\r
336#\r
337\r
338mbuild: $(INIT_TARGET) $(BC_TARGET) gen_libs $(PCH_TARGET) $(CODA_TARGET)\r
339\r
340#\r
341# Build Target used in multi-thread build mode, which will bypass the init and gen_libs targets\r
342#\r
343\r
344tbuild: $(BC_TARGET) $(PCH_TARGET) $(CODA_TARGET)\r
345\r
346#\r
347# Phony target which is used to force executing commands for a target\r
348#\r
349force_build:\r
350\t-@\r
351\r
352#\r
353# Target to update the FD\r
354#\r
355\r
356fds: mbuild gen_fds\r
357\r
358#\r
359# Initialization target: print build information and create necessary directories\r
360#\r
361init: info dirs\r
362\r
363info:\r
364\t-@echo Building ... $(MODULE_DIR)${separator}$(MODULE_FILE) [$(ARCH)]\r
365\r
366dirs:\r
367${BEGIN}\t-@${create_directory_command}\n${END}\r
368\r
369strdefs:\r
370\t-@$(CP) $(DEBUG_DIR)${separator}AutoGen.h $(DEBUG_DIR)${separator}$(MODULE_NAME)StrDefs.h\r
371\r
372#\r
373# GenLibsTarget\r
374#\r
375gen_libs:\r
376\t${BEGIN}@"$(MAKE)" $(MAKE_FLAGS) -f ${dependent_library_build_directory}${separator}${makefile_name}\r
377\t${END}@cd $(MODULE_BUILD_DIR)\r
378\r
379#\r
380# Build Flash Device Image\r
381#\r
382gen_fds:\r
383\t@"$(MAKE)" $(MAKE_FLAGS) -f $(BUILD_DIR)${separator}${makefile_name} fds\r
384\t@cd $(MODULE_BUILD_DIR)\r
385\r
386#\r
387# Individual Object Build Targets\r
388#\r
389${BEGIN}${file_build_target}\r
390${END}\r
391\r
392#\r
393# clean all intermediate files\r
394#\r
395clean:\r
396\t${BEGIN}${clean_command}\r
8ac3309f 397\t${END}\t$(RM) AutoGenTimeStamp\r
f51461c8
LG
398\r
399#\r
400# clean all generated files\r
401#\r
402cleanall:\r
403${BEGIN}\t${cleanall_command}\r
404${END}\t$(RM) *.pdb *.idb > NUL 2>&1\r
405\t$(RM) $(BIN_DIR)${separator}$(MODULE_NAME).efi\r
8ac3309f 406\t$(RM) AutoGenTimeStamp\r
f51461c8
LG
407\r
408#\r
409# clean all dependent libraries built\r
410#\r
411cleanlib:\r
412\t${BEGIN}-@${library_build_command} cleanall\r
413\t${END}@cd $(MODULE_BUILD_DIR)\n\n''')\r
414\r
415 _FILE_MACRO_TEMPLATE = TemplateString("${macro_name} = ${BEGIN} \\\n ${source_file}${END}\n")\r
416 _BUILD_TARGET_TEMPLATE = TemplateString("${BEGIN}${target} : ${deps}\n${END}\t${cmd}\n")\r
417\r
418 ## Constructor of ModuleMakefile\r
419 #\r
420 # @param ModuleAutoGen Object of ModuleAutoGen class\r
421 #\r
422 def __init__(self, ModuleAutoGen):\r
423 BuildFile.__init__(self, ModuleAutoGen)\r
424 self.PlatformInfo = self._AutoGenObject.PlatformInfo\r
425\r
426 self.ResultFileList = []\r
427 self.IntermediateDirectoryList = ["$(DEBUG_DIR)", "$(OUTPUT_DIR)"]\r
428\r
429 self.SourceFileDatabase = {} # {file type : file path}\r
430 self.DestFileDatabase = {} # {file type : file path}\r
431 self.FileBuildTargetList = [] # [(src, target string)]\r
432 self.BuildTargetList = [] # [target string]\r
433 self.PendingBuildTargetList = [] # [FileBuildRule objects]\r
434 self.CommonFileDependency = []\r
435 self.FileListMacros = {}\r
436 self.ListFileMacros = {}\r
437\r
438 self.FileCache = {}\r
439 self.FileDependency = []\r
440 self.LibraryBuildCommandList = []\r
441 self.LibraryFileList = []\r
442 self.LibraryMakefileList = []\r
443 self.LibraryBuildDirectoryList = []\r
444 self.SystemLibraryList = []\r
445 self.Macros = sdict()\r
446 self.Macros["OUTPUT_DIR" ] = self._AutoGenObject.Macros["OUTPUT_DIR"]\r
447 self.Macros["DEBUG_DIR" ] = self._AutoGenObject.Macros["DEBUG_DIR"]\r
448 self.Macros["MODULE_BUILD_DIR"] = self._AutoGenObject.Macros["MODULE_BUILD_DIR"]\r
449 self.Macros["BIN_DIR" ] = self._AutoGenObject.Macros["BIN_DIR"]\r
450 self.Macros["BUILD_DIR" ] = self._AutoGenObject.Macros["BUILD_DIR"]\r
451 self.Macros["WORKSPACE" ] = self._AutoGenObject.Macros["WORKSPACE"]\r
37de70b7
YZ
452 self.Macros["FFS_OUTPUT_DIR" ] = self._AutoGenObject.Macros["FFS_OUTPUT_DIR"]\r
453 self.GenFfsList = ModuleAutoGen.GenFfsList\r
454 self.MacroList = ['FFS_OUTPUT_DIR', 'MODULE_GUID', 'OUTPUT_DIR']\r
455 self.FfsOutputFileList = []\r
f51461c8
LG
456\r
457 # Compose a dict object containing information used to do replacement in template\r
458 def _CreateTemplateDict(self):\r
459 if self._FileType not in self._SEP_:\r
460 EdkLogger.error("build", PARAMETER_INVALID, "Invalid Makefile type [%s]" % self._FileType,\r
461 ExtraData="[%s]" % str(self._AutoGenObject))\r
462 Separator = self._SEP_[self._FileType]\r
463\r
464 # break build if no source files and binary files are found\r
465 if len(self._AutoGenObject.SourceFileList) == 0 and len(self._AutoGenObject.BinaryFileList) == 0:\r
466 EdkLogger.error("build", AUTOGEN_ERROR, "No files to be built in module [%s, %s, %s]"\r
467 % (self._AutoGenObject.BuildTarget, self._AutoGenObject.ToolChain, self._AutoGenObject.Arch),\r
468 ExtraData="[%s]" % str(self._AutoGenObject))\r
469\r
470 # convert dependent libraries to build command\r
471 self.ProcessDependentLibrary()\r
472 if len(self._AutoGenObject.Module.ModuleEntryPointList) > 0:\r
473 ModuleEntryPoint = self._AutoGenObject.Module.ModuleEntryPointList[0]\r
474 else:\r
475 ModuleEntryPoint = "_ModuleEntryPoint"\r
476\r
477 # Intel EBC compiler enforces EfiMain\r
478 if self._AutoGenObject.AutoGenVersion < 0x00010005 and self._AutoGenObject.Arch == "EBC":\r
479 ArchEntryPoint = "EfiMain"\r
480 else:\r
481 ArchEntryPoint = ModuleEntryPoint\r
482\r
483 if self._AutoGenObject.Arch == "EBC":\r
484 # EBC compiler always use "EfiStart" as entry point. Only applies to EdkII modules\r
485 ImageEntryPoint = "EfiStart"\r
486 elif self._AutoGenObject.AutoGenVersion < 0x00010005:\r
487 # Edk modules use entry point specified in INF file\r
488 ImageEntryPoint = ModuleEntryPoint\r
489 else:\r
490 # EdkII modules always use "_ModuleEntryPoint" as entry point\r
491 ImageEntryPoint = "_ModuleEntryPoint"\r
492\r
3570e332
YZ
493 for k, v in self._AutoGenObject.Module.Defines.iteritems():\r
494 if k not in self._AutoGenObject.Macros.keys():\r
495 self._AutoGenObject.Macros[k] = v\r
496\r
497 if 'MODULE_ENTRY_POINT' not in self._AutoGenObject.Macros.keys():\r
498 self._AutoGenObject.Macros['MODULE_ENTRY_POINT'] = ModuleEntryPoint\r
499 if 'ARCH_ENTRY_POINT' not in self._AutoGenObject.Macros.keys():\r
500 self._AutoGenObject.Macros['ARCH_ENTRY_POINT'] = ArchEntryPoint\r
501 if 'IMAGE_ENTRY_POINT' not in self._AutoGenObject.Macros.keys():\r
502 self._AutoGenObject.Macros['IMAGE_ENTRY_POINT'] = ImageEntryPoint\r
503\r
9ccb26bc
YZ
504 PCI_COMPRESS_Flag = False\r
505 for k, v in self._AutoGenObject.Module.Defines.iteritems():\r
506 if 'PCI_COMPRESS' == k and 'TRUE' == v:\r
507 PCI_COMPRESS_Flag = True\r
508\r
f51461c8
LG
509 # tools definitions\r
510 ToolsDef = []\r
511 IncPrefix = self._INC_FLAG_[self._AutoGenObject.ToolChainFamily]\r
512 for Tool in self._AutoGenObject.BuildOption:\r
513 for Attr in self._AutoGenObject.BuildOption[Tool]:\r
514 Value = self._AutoGenObject.BuildOption[Tool][Attr]\r
515 if Attr == "FAMILY":\r
516 continue\r
517 elif Attr == "PATH":\r
518 ToolsDef.append("%s = %s" % (Tool, Value))\r
519 else:\r
520 # Don't generate MAKE_FLAGS in makefile. It's put in environment variable.\r
521 if Tool == "MAKE":\r
522 continue\r
523 # Remove duplicated include path, if any\r
524 if Attr == "FLAGS":\r
525 Value = RemoveDupOption(Value, IncPrefix, self._AutoGenObject.IncludePathList)\r
9ccb26bc
YZ
526 if Tool == "OPTROM" and PCI_COMPRESS_Flag:\r
527 ValueList = Value.split()\r
528 if ValueList:\r
529 for i, v in enumerate(ValueList):\r
530 if '-e' == v:\r
531 ValueList[i] = '-ec'\r
532 Value = ' '.join(ValueList)\r
533\r
f51461c8
LG
534 ToolsDef.append("%s_%s = %s" % (Tool, Attr, Value))\r
535 ToolsDef.append("")\r
536\r
725cdb8f
YZ
537 # generate the Response file and Response flag\r
538 RespDict = self.CommandExceedLimit()\r
539 RespFileList = os.path.join(self._AutoGenObject.OutputDir, 'respfilelist.txt')\r
540 if RespDict:\r
541 RespFileListContent = ''\r
542 for Resp in RespDict.keys():\r
543 RespFile = os.path.join(self._AutoGenObject.OutputDir, str(Resp).lower() + '.txt')\r
3570e332
YZ
544 StrList = RespDict[Resp].split(' ')\r
545 UnexpandMacro = []\r
546 NewStr = []\r
547 for Str in StrList:\r
548 if '$' in Str:\r
549 UnexpandMacro.append(Str)\r
550 else:\r
551 NewStr.append(Str)\r
552 UnexpandMacroStr = ' '.join(UnexpandMacro)\r
553 NewRespStr = ' '.join(NewStr)\r
554 SaveFileOnChange(RespFile, NewRespStr, False)\r
555 ToolsDef.append("%s = %s" % (Resp, UnexpandMacroStr + ' @' + RespFile))\r
725cdb8f 556 RespFileListContent += '@' + RespFile + os.linesep\r
3570e332 557 RespFileListContent += NewRespStr + os.linesep\r
725cdb8f
YZ
558 SaveFileOnChange(RespFileList, RespFileListContent, False)\r
559 else:\r
560 if os.path.exists(RespFileList):\r
561 os.remove(RespFileList)\r
562\r
f51461c8
LG
563 # convert source files and binary files to build targets\r
564 self.ResultFileList = [str(T.Target) for T in self._AutoGenObject.CodaTargetList]\r
47fea6af 565 if len(self.ResultFileList) == 0 and len(self._AutoGenObject.SourceFileList) <> 0:\r
f51461c8
LG
566 EdkLogger.error("build", AUTOGEN_ERROR, "Nothing to build",\r
567 ExtraData="[%s]" % str(self._AutoGenObject))\r
568\r
569 self.ProcessBuildTargetList()\r
37de70b7 570 self.ParserGenerateFfsCmd()\r
f51461c8
LG
571\r
572 # Generate macros used to represent input files\r
573 FileMacroList = [] # macro name = file list\r
574 for FileListMacro in self.FileListMacros:\r
575 FileMacro = self._FILE_MACRO_TEMPLATE.Replace(\r
576 {\r
577 "macro_name" : FileListMacro,\r
578 "source_file" : self.FileListMacros[FileListMacro]\r
579 }\r
580 )\r
581 FileMacroList.append(FileMacro)\r
582\r
583 # INC_LIST is special\r
584 FileMacro = ""\r
585 IncludePathList = []\r
586 for P in self._AutoGenObject.IncludePathList:\r
47fea6af 587 IncludePathList.append(IncPrefix + self.PlaceMacro(P, self.Macros))\r
f51461c8 588 if FileBuildRule.INC_LIST_MACRO in self.ListFileMacros:\r
47fea6af 589 self.ListFileMacros[FileBuildRule.INC_LIST_MACRO].append(IncPrefix + P)\r
f51461c8
LG
590 FileMacro += self._FILE_MACRO_TEMPLATE.Replace(\r
591 {\r
592 "macro_name" : "INC",\r
593 "source_file" : IncludePathList\r
594 }\r
595 )\r
596 FileMacroList.append(FileMacro)\r
597\r
598 # Generate macros used to represent files containing list of input files\r
599 for ListFileMacro in self.ListFileMacros:\r
47fea6af 600 ListFileName = os.path.join(self._AutoGenObject.OutputDir, "%s.lst" % ListFileMacro.lower()[:len(ListFileMacro) - 5])\r
f51461c8
LG
601 FileMacroList.append("%s = %s" % (ListFileMacro, ListFileName))\r
602 SaveFileOnChange(\r
603 ListFileName,\r
604 "\n".join(self.ListFileMacros[ListFileMacro]),\r
605 False\r
606 )\r
607\r
608 # Edk modules need <BaseName>StrDefs.h for string ID\r
609 #if self._AutoGenObject.AutoGenVersion < 0x00010005 and len(self._AutoGenObject.UnicodeFileList) > 0:\r
610 # BcTargetList = ['strdefs']\r
611 #else:\r
612 # BcTargetList = []\r
613 BcTargetList = []\r
614\r
615 MakefileName = self._FILE_NAME_[self._FileType]\r
616 LibraryMakeCommandList = []\r
617 for D in self.LibraryBuildDirectoryList:\r
618 Command = self._MAKE_TEMPLATE_[self._FileType] % {"file":os.path.join(D, MakefileName)}\r
619 LibraryMakeCommandList.append(Command)\r
620\r
97fa0ee9 621 package_rel_dir = self._AutoGenObject.SourceDir\r
b442ad5c
YL
622 current_dir = self.Macros["WORKSPACE"]\r
623 found = False\r
624 while not found and os.sep in package_rel_dir:\r
625 index = package_rel_dir.index(os.sep)\r
05cc51ad 626 current_dir = mws.join(current_dir, package_rel_dir[:index])\r
570ae1eb
YZ
627 if os.path.exists(current_dir):\r
628 for fl in os.listdir(current_dir):\r
629 if fl.endswith('.dec'):\r
630 found = True\r
631 break\r
b442ad5c 632 package_rel_dir = package_rel_dir[index + 1:]\r
97fa0ee9 633\r
f51461c8
LG
634 MakefileTemplateDict = {\r
635 "makefile_header" : self._FILE_HEADER_[self._FileType],\r
636 "makefile_path" : os.path.join("$(MODULE_BUILD_DIR)", MakefileName),\r
637 "makefile_name" : MakefileName,\r
638 "platform_name" : self.PlatformInfo.Name,\r
639 "platform_guid" : self.PlatformInfo.Guid,\r
640 "platform_version" : self.PlatformInfo.Version,\r
641 "platform_relative_directory": self.PlatformInfo.SourceDir,\r
642 "platform_output_directory" : self.PlatformInfo.OutputDir,\r
37de70b7 643 "ffs_output_directory" : self._AutoGenObject.Macros["FFS_OUTPUT_DIR"],\r
017fb1cd 644 "platform_dir" : self._AutoGenObject.Macros["PLATFORM_DIR"],\r
f51461c8
LG
645\r
646 "module_name" : self._AutoGenObject.Name,\r
647 "module_guid" : self._AutoGenObject.Guid,\r
867d1cd4 648 "module_name_guid" : self._AutoGenObject._GetUniqueBaseName(),\r
f51461c8
LG
649 "module_version" : self._AutoGenObject.Version,\r
650 "module_type" : self._AutoGenObject.ModuleType,\r
651 "module_file" : self._AutoGenObject.MetaFile.Name,\r
652 "module_file_base_name" : self._AutoGenObject.MetaFile.BaseName,\r
653 "module_relative_directory" : self._AutoGenObject.SourceDir,\r
01e418d6 654 "module_dir" : mws.join (self.Macros["WORKSPACE"], self._AutoGenObject.SourceDir),\r
97fa0ee9
YL
655 "package_relative_directory": package_rel_dir,\r
656 "module_extra_defines" : ["%s = %s" % (k, v) for k, v in self._AutoGenObject.Module.Defines.iteritems()],\r
f51461c8
LG
657\r
658 "architecture" : self._AutoGenObject.Arch,\r
659 "toolchain_tag" : self._AutoGenObject.ToolChain,\r
660 "build_target" : self._AutoGenObject.BuildTarget,\r
661\r
662 "platform_build_directory" : self.PlatformInfo.BuildDir,\r
663 "module_build_directory" : self._AutoGenObject.BuildDir,\r
664 "module_output_directory" : self._AutoGenObject.OutputDir,\r
665 "module_debug_directory" : self._AutoGenObject.DebugDir,\r
666\r
667 "separator" : Separator,\r
668 "module_tool_definitions" : ToolsDef,\r
669\r
670 "shell_command_code" : self._SHELL_CMD_[self._FileType].keys(),\r
671 "shell_command" : self._SHELL_CMD_[self._FileType].values(),\r
672\r
673 "module_entry_point" : ModuleEntryPoint,\r
674 "image_entry_point" : ImageEntryPoint,\r
675 "arch_entry_point" : ArchEntryPoint,\r
676 "remaining_build_target" : self.ResultFileList,\r
677 "common_dependency_file" : self.CommonFileDependency,\r
678 "create_directory_command" : self.GetCreateDirectoryCommand(self.IntermediateDirectoryList),\r
679 "clean_command" : self.GetRemoveDirectoryCommand(["$(OUTPUT_DIR)"]),\r
680 "cleanall_command" : self.GetRemoveDirectoryCommand(["$(DEBUG_DIR)", "$(OUTPUT_DIR)"]),\r
681 "dependent_library_build_directory" : self.LibraryBuildDirectoryList,\r
682 "library_build_command" : LibraryMakeCommandList,\r
683 "file_macro" : FileMacroList,\r
684 "file_build_target" : self.BuildTargetList,\r
685 "backward_compatible_target": BcTargetList,\r
686 }\r
687\r
688 return MakefileTemplateDict\r
689\r
37de70b7
YZ
690 def ParserGenerateFfsCmd(self):\r
691 #Add Ffs cmd to self.BuildTargetList\r
692 OutputFile = ''\r
693 DepsFileList = []\r
694\r
695 for Cmd in self.GenFfsList:\r
696 if Cmd[2]:\r
697 for CopyCmd in Cmd[2]:\r
698 Src, Dst = CopyCmd\r
699 Src = self.ReplaceMacro(Src)\r
700 Dst = self.ReplaceMacro(Dst)\r
701 if Dst not in self.ResultFileList:\r
702 self.ResultFileList.append('%s' % Dst)\r
703 if '%s :' %(Dst) not in self.BuildTargetList:\r
704 self.BuildTargetList.append("%s :" %(Dst))\r
705 self.BuildTargetList.append('\t' + self._CP_TEMPLATE_[self._FileType] %{'Src': Src, 'Dst': Dst})\r
706\r
707 FfsCmdList = Cmd[0]\r
708 for index, Str in enumerate(FfsCmdList):\r
709 if '-o' == Str:\r
710 OutputFile = FfsCmdList[index + 1]\r
711 if '-i' == Str:\r
712 if DepsFileList == []:\r
713 DepsFileList = [FfsCmdList[index + 1]]\r
714 else:\r
715 DepsFileList.append(FfsCmdList[index + 1])\r
716 DepsFileString = ' '.join(DepsFileList).strip()\r
717 if DepsFileString == '':\r
718 continue\r
719 OutputFile = self.ReplaceMacro(OutputFile)\r
720 self.ResultFileList.append('%s' % OutputFile)\r
721 DepsFileString = self.ReplaceMacro(DepsFileString)\r
722 self.BuildTargetList.append('%s : %s' % (OutputFile, DepsFileString))\r
723 CmdString = ' '.join(FfsCmdList).strip()\r
724 CmdString = self.ReplaceMacro(CmdString)\r
725 self.BuildTargetList.append('\t%s' % CmdString)\r
726\r
727 self.ParseSecCmd(DepsFileList, Cmd[1])\r
728 for SecOutputFile, SecDepsFile, SecCmd in self.FfsOutputFileList :\r
729 self.BuildTargetList.append('%s : %s' % (self.ReplaceMacro(SecOutputFile), self.ReplaceMacro(SecDepsFile)))\r
730 self.BuildTargetList.append('\t%s' % self.ReplaceMacro(SecCmd))\r
731 self.FfsOutputFileList = []\r
732\r
733 def ParseSecCmd(self, OutputFileList, CmdTuple):\r
734 for OutputFile in OutputFileList:\r
735 for SecCmdStr in CmdTuple:\r
736 SecDepsFileList = []\r
737 SecCmdList = SecCmdStr.split()\r
738 CmdName = SecCmdList[0]\r
739 for index, CmdItem in enumerate(SecCmdList):\r
740 if '-o' == CmdItem and OutputFile == SecCmdList[index + 1]:\r
741 index = index + 1\r
742 while index + 1 < len(SecCmdList):\r
743 if not SecCmdList[index+1].startswith('-'):\r
744 SecDepsFileList.append(SecCmdList[index + 1])\r
745 index = index + 1\r
746 if CmdName == 'Trim':\r
747 SecDepsFileList.append(os.path.join('$(DEBUG_DIR)', os.path.basename(OutputFile).replace('offset', 'efi')))\r
748 if OutputFile.endswith('.ui') or OutputFile.endswith('.ver'):\r
749 SecDepsFileList.append(os.path.join('$(MODULE_DIR)','$(MODULE_FILE)'))\r
750 self.FfsOutputFileList.append((OutputFile, ' '.join(SecDepsFileList), SecCmdStr))\r
751 if len(SecDepsFileList) > 0:\r
752 self.ParseSecCmd(SecDepsFileList, CmdTuple)\r
753 break\r
754 else:\r
755 continue\r
756\r
757 def ReplaceMacro(self, str):\r
758 for Macro in self.MacroList:\r
759 if self._AutoGenObject.Macros[Macro] and self._AutoGenObject.Macros[Macro] in str:\r
760 str = str.replace(self._AutoGenObject.Macros[Macro], '$(' + Macro + ')')\r
761 return str\r
762\r
725cdb8f
YZ
763 def CommandExceedLimit(self):\r
764 FlagDict = {\r
765 'CC' : { 'Macro' : '$(CC_FLAGS)', 'Value' : False},\r
766 'PP' : { 'Macro' : '$(PP_FLAGS)', 'Value' : False},\r
767 'APP' : { 'Macro' : '$(APP_FLAGS)', 'Value' : False},\r
768 'ASLPP' : { 'Macro' : '$(ASLPP_FLAGS)', 'Value' : False},\r
769 'VFRPP' : { 'Macro' : '$(VFRPP_FLAGS)', 'Value' : False},\r
770 'ASM' : { 'Macro' : '$(ASM_FLAGS)', 'Value' : False},\r
771 'ASLCC' : { 'Macro' : '$(ASLCC_FLAGS)', 'Value' : False},\r
772 }\r
773\r
774 RespDict = {}\r
775 FileTypeList = []\r
776 IncPrefix = self._INC_FLAG_[self._AutoGenObject.ToolChainFamily]\r
777\r
778 # base on the source files to decide the file type\r
779 for File in self._AutoGenObject.SourceFileList:\r
780 for type in self._AutoGenObject.FileTypes:\r
781 if File in self._AutoGenObject.FileTypes[type]:\r
782 if type not in FileTypeList:\r
783 FileTypeList.append(type)\r
784\r
785 # calculate the command-line length\r
786 if FileTypeList:\r
787 for type in FileTypeList:\r
788 BuildTargets = self._AutoGenObject.BuildRules[type].BuildTargets\r
789 for Target in BuildTargets:\r
790 CommandList = BuildTargets[Target].Commands\r
791 for SingleCommand in CommandList:\r
792 Tool = ''\r
793 SingleCommandLength = len(SingleCommand)\r
794 SingleCommandList = SingleCommand.split()\r
795 if len(SingleCommandList) > 0:\r
796 for Flag in FlagDict.keys():\r
797 if '$('+ Flag +')' in SingleCommandList[0]:\r
798 Tool = Flag\r
799 break\r
800 if Tool:\r
801 SingleCommandLength += len(self._AutoGenObject._BuildOption[Tool]['PATH'])\r
802 for item in SingleCommandList[1:]:\r
803 if FlagDict[Tool]['Macro'] in item:\r
804 Str = self._AutoGenObject._BuildOption[Tool]['FLAGS']\r
3570e332
YZ
805 for Option in self._AutoGenObject.BuildOption.keys():\r
806 for Attr in self._AutoGenObject.BuildOption[Option]:\r
807 if Str.find(Option + '_' + Attr) != -1:\r
808 Str = Str.replace('$(' + Option + '_' + Attr + ')', self._AutoGenObject.BuildOption[Option][Attr])\r
725cdb8f
YZ
809 while(Str.find('$(') != -1):\r
810 for macro in self._AutoGenObject.Macros.keys():\r
811 MacroName = '$('+ macro + ')'\r
812 if (Str.find(MacroName) != -1):\r
813 Str = Str.replace(MacroName, self._AutoGenObject.Macros[macro])\r
814 break\r
815 else:\r
3570e332 816 break\r
725cdb8f
YZ
817 SingleCommandLength += len(Str)\r
818 elif '$(INC)' in item:\r
819 SingleCommandLength += self._AutoGenObject.IncludePathLength + len(IncPrefix) * len(self._AutoGenObject._IncludePathList)\r
820 elif item.find('$(') != -1:\r
821 Str = item\r
822 for Option in self._AutoGenObject.BuildOption.keys():\r
823 for Attr in self._AutoGenObject.BuildOption[Option]:\r
824 if Str.find(Option + '_' + Attr) != -1:\r
825 Str = Str.replace('$(' + Option + '_' + Attr + ')', self._AutoGenObject.BuildOption[Option][Attr])\r
826 while(Str.find('$(') != -1):\r
827 for macro in self._AutoGenObject.Macros.keys():\r
828 MacroName = '$('+ macro + ')'\r
829 if (Str.find(MacroName) != -1):\r
830 Str = Str.replace(MacroName, self._AutoGenObject.Macros[macro])\r
831 break\r
832 else:\r
3570e332 833 break\r
725cdb8f
YZ
834 SingleCommandLength += len(Str)\r
835\r
836 if SingleCommandLength > GlobalData.gCommandMaxLength:\r
837 FlagDict[Tool]['Value'] = True\r
838\r
839 # generate the response file content by combine the FLAGS and INC\r
840 for Flag in FlagDict.keys():\r
841 if FlagDict[Flag]['Value']:\r
842 Key = Flag + '_RESP'\r
843 RespMacro = FlagDict[Flag]['Macro'].replace('FLAGS', 'RESP')\r
844 Value = self._AutoGenObject.BuildOption[Flag]['FLAGS']\r
845 for inc in self._AutoGenObject._IncludePathList:\r
846 Value += ' ' + IncPrefix + inc\r
3570e332
YZ
847 for Option in self._AutoGenObject.BuildOption.keys():\r
848 for Attr in self._AutoGenObject.BuildOption[Option]:\r
849 if Value.find(Option + '_' + Attr) != -1:\r
850 Value = Value.replace('$(' + Option + '_' + Attr + ')', self._AutoGenObject.BuildOption[Option][Attr])\r
725cdb8f
YZ
851 while (Value.find('$(') != -1):\r
852 for macro in self._AutoGenObject.Macros.keys():\r
853 MacroName = '$('+ macro + ')'\r
854 if (Value.find(MacroName) != -1):\r
855 Value = Value.replace(MacroName, self._AutoGenObject.Macros[macro])\r
856 break\r
857 else:\r
3570e332 858 break\r
669b6cc6
YZ
859\r
860 if self._AutoGenObject.ToolChainFamily == 'GCC':\r
861 RespDict[Key] = Value.replace('\\', '/')\r
862 else:\r
863 RespDict[Key] = Value\r
725cdb8f
YZ
864 for Target in BuildTargets:\r
865 for i, SingleCommand in enumerate(BuildTargets[Target].Commands):\r
866 if FlagDict[Flag]['Macro'] in SingleCommand:\r
867 BuildTargets[Target].Commands[i] = SingleCommand.replace('$(INC)','').replace(FlagDict[Flag]['Macro'], RespMacro)\r
868 return RespDict\r
869\r
f51461c8
LG
870 def ProcessBuildTargetList(self):\r
871 #\r
872 # Search dependency file list for each source file\r
873 #\r
874 ForceIncludedFile = []\r
875 for File in self._AutoGenObject.AutoGenFileList:\r
876 if File.Ext == '.h':\r
877 ForceIncludedFile.append(File)\r
878 SourceFileList = []\r
a3a47370 879 OutPutFileList = []\r
f51461c8
LG
880 for Target in self._AutoGenObject.IntroTargetList:\r
881 SourceFileList.extend(Target.Inputs)\r
a3a47370
YZ
882 OutPutFileList.extend(Target.Outputs)\r
883\r
884 if OutPutFileList:\r
885 for Item in OutPutFileList:\r
886 if Item in SourceFileList:\r
887 SourceFileList.remove(Item)\r
f51461c8
LG
888\r
889 self.FileDependency = self.GetFileDependency(\r
890 SourceFileList,\r
891 ForceIncludedFile,\r
892 self._AutoGenObject.IncludePathList + self._AutoGenObject.BuildOptionIncPathList\r
893 )\r
894 DepSet = None\r
895 for File in self.FileDependency:\r
896 if not self.FileDependency[File]:\r
897 self.FileDependency[File] = ['$(FORCE_REBUILD)']\r
898 continue\r
c17956e0
DL
899\r
900 self._AutoGenObject.AutoGenDepSet |= set(self.FileDependency[File])\r
901\r
f51461c8
LG
902 # skip non-C files\r
903 if File.Ext not in [".c", ".C"] or File.Name == "AutoGen.c":\r
904 continue\r
905 elif DepSet == None:\r
906 DepSet = set(self.FileDependency[File])\r
907 else:\r
908 DepSet &= set(self.FileDependency[File])\r
909 # in case nothing in SourceFileList\r
910 if DepSet == None:\r
911 DepSet = set()\r
912 #\r
913 # Extract common files list in the dependency files\r
914 #\r
915 for File in DepSet:\r
916 self.CommonFileDependency.append(self.PlaceMacro(File.Path, self.Macros))\r
917\r
918 for File in self.FileDependency:\r
919 # skip non-C files\r
920 if File.Ext not in [".c", ".C"] or File.Name == "AutoGen.c":\r
921 continue\r
922 NewDepSet = set(self.FileDependency[File])\r
923 NewDepSet -= DepSet\r
924 self.FileDependency[File] = ["$(COMMON_DEPS)"] + list(NewDepSet)\r
925\r
926 # Convert target description object to target string in makefile\r
927 for Type in self._AutoGenObject.Targets:\r
928 for T in self._AutoGenObject.Targets[Type]:\r
929 # Generate related macros if needed\r
930 if T.GenFileListMacro and T.FileListMacro not in self.FileListMacros:\r
931 self.FileListMacros[T.FileListMacro] = []\r
932 if T.GenListFile and T.ListFileMacro not in self.ListFileMacros:\r
933 self.ListFileMacros[T.ListFileMacro] = []\r
934 if T.GenIncListFile and T.IncListFileMacro not in self.ListFileMacros:\r
935 self.ListFileMacros[T.IncListFileMacro] = []\r
936\r
937 Deps = []\r
938 # Add force-dependencies\r
939 for Dep in T.Dependencies:\r
940 Deps.append(self.PlaceMacro(str(Dep), self.Macros))\r
941 # Add inclusion-dependencies\r
942 if len(T.Inputs) == 1 and T.Inputs[0] in self.FileDependency:\r
943 for F in self.FileDependency[T.Inputs[0]]:\r
944 Deps.append(self.PlaceMacro(str(F), self.Macros))\r
945 # Add source-dependencies\r
946 for F in T.Inputs:\r
947 NewFile = self.PlaceMacro(str(F), self.Macros)\r
948 # In order to use file list macro as dependency\r
949 if T.GenListFile:\r
285a1754
SD
950 # gnu tools need forward slash path separater, even on Windows\r
951 self.ListFileMacros[T.ListFileMacro].append(str(F).replace ('\\', '/'))\r
f51461c8
LG
952 self.FileListMacros[T.FileListMacro].append(NewFile)\r
953 elif T.GenFileListMacro:\r
954 self.FileListMacros[T.FileListMacro].append(NewFile)\r
955 else:\r
956 Deps.append(NewFile)\r
957\r
958 # Use file list macro as dependency\r
959 if T.GenFileListMacro:\r
960 Deps.append("$(%s)" % T.FileListMacro)\r
1c62af9e
YZ
961 if Type in [TAB_OBJECT_FILE, TAB_STATIC_LIBRARY]:\r
962 Deps.append("$(%s)" % T.ListFileMacro)\r
f51461c8
LG
963\r
964 TargetDict = {\r
965 "target" : self.PlaceMacro(T.Target.Path, self.Macros),\r
966 "cmd" : "\n\t".join(T.Commands),\r
967 "deps" : Deps\r
968 }\r
969 self.BuildTargetList.append(self._BUILD_TARGET_TEMPLATE.Replace(TargetDict))\r
970\r
971 ## For creating makefile targets for dependent libraries\r
972 def ProcessDependentLibrary(self):\r
973 for LibraryAutoGen in self._AutoGenObject.LibraryAutoGenList:\r
8832c79d
YZ
974 if not LibraryAutoGen.IsBinaryModule:\r
975 self.LibraryBuildDirectoryList.append(self.PlaceMacro(LibraryAutoGen.BuildDir, self.Macros))\r
f51461c8
LG
976\r
977 ## Return a list containing source file's dependencies\r
978 #\r
979 # @param FileList The list of source files\r
980 # @param ForceInculeList The list of files which will be included forcely\r
981 # @param SearchPathList The list of search path\r
982 #\r
983 # @retval dict The mapping between source file path and its dependencies\r
984 #\r
985 def GetFileDependency(self, FileList, ForceInculeList, SearchPathList):\r
986 Dependency = {}\r
987 for F in FileList:\r
988 Dependency[F] = self.GetDependencyList(F, ForceInculeList, SearchPathList)\r
989 return Dependency\r
990\r
991 ## Find dependencies for one source file\r
992 #\r
993 # By searching recursively "#include" directive in file, find out all the\r
994 # files needed by given source file. The dependecies will be only searched\r
995 # in given search path list.\r
996 #\r
997 # @param File The source file\r
998 # @param ForceInculeList The list of files which will be included forcely\r
999 # @param SearchPathList The list of search path\r
1000 #\r
1001 # @retval list The list of files the given source file depends on\r
1002 #\r
1003 def GetDependencyList(self, File, ForceList, SearchPathList):\r
1004 EdkLogger.debug(EdkLogger.DEBUG_1, "Try to get dependency files for %s" % File)\r
1005 FileStack = [File] + ForceList\r
1006 DependencySet = set()\r
1007\r
1008 if self._AutoGenObject.Arch not in gDependencyDatabase:\r
1009 gDependencyDatabase[self._AutoGenObject.Arch] = {}\r
1010 DepDb = gDependencyDatabase[self._AutoGenObject.Arch]\r
1011\r
1012 while len(FileStack) > 0:\r
1013 F = FileStack.pop()\r
1014\r
1015 FullPathDependList = []\r
1016 if F in self.FileCache:\r
1017 for CacheFile in self.FileCache[F]:\r
1018 FullPathDependList.append(CacheFile)\r
1019 if CacheFile not in DependencySet:\r
1020 FileStack.append(CacheFile)\r
1021 DependencySet.update(FullPathDependList)\r
1022 continue\r
1023\r
1024 CurrentFileDependencyList = []\r
1025 if F in DepDb:\r
1026 CurrentFileDependencyList = DepDb[F]\r
1027 else:\r
1028 try:\r
1029 Fd = open(F.Path, 'r')\r
1030 except BaseException, X:\r
47fea6af 1031 EdkLogger.error("build", FILE_OPEN_FAILURE, ExtraData=F.Path + "\n\t" + str(X))\r
f51461c8
LG
1032\r
1033 FileContent = Fd.read()\r
1034 Fd.close()\r
1035 if len(FileContent) == 0:\r
1036 continue\r
1037\r
1038 if FileContent[0] == 0xff or FileContent[0] == 0xfe:\r
1039 FileContent = unicode(FileContent, "utf-16")\r
1040 IncludedFileList = gIncludePattern.findall(FileContent)\r
1041\r
1042 for Inc in IncludedFileList:\r
1043 Inc = Inc.strip()\r
1044 # if there's macro used to reference header file, expand it\r
1045 HeaderList = gMacroPattern.findall(Inc)\r
1046 if len(HeaderList) == 1 and len(HeaderList[0]) == 2:\r
1047 HeaderType = HeaderList[0][0]\r
1048 HeaderKey = HeaderList[0][1]\r
1049 if HeaderType in gIncludeMacroConversion:\r
1050 Inc = gIncludeMacroConversion[HeaderType] % {"HeaderKey" : HeaderKey}\r
1051 else:\r
1052 # not known macro used in #include, always build the file by\r
1053 # returning a empty dependency\r
1054 self.FileCache[File] = []\r
1055 return []\r
1056 Inc = os.path.normpath(Inc)\r
1057 CurrentFileDependencyList.append(Inc)\r
1058 DepDb[F] = CurrentFileDependencyList\r
1059\r
1060 CurrentFilePath = F.Dir\r
1061 PathList = [CurrentFilePath] + SearchPathList\r
1062 for Inc in CurrentFileDependencyList:\r
1063 for SearchPath in PathList:\r
1064 FilePath = os.path.join(SearchPath, Inc)\r
1065 if FilePath in gIsFileMap:\r
1066 if not gIsFileMap[FilePath]:\r
1067 continue\r
1068 # If isfile is called too many times, the performance is slow down.\r
1069 elif not os.path.isfile(FilePath):\r
1070 gIsFileMap[FilePath] = False\r
1071 continue\r
1072 else:\r
1073 gIsFileMap[FilePath] = True\r
1074 FilePath = PathClass(FilePath)\r
1075 FullPathDependList.append(FilePath)\r
1076 if FilePath not in DependencySet:\r
1077 FileStack.append(FilePath)\r
1078 break\r
1079 else:\r
1080 EdkLogger.debug(EdkLogger.DEBUG_9, "%s included by %s was not found "\\r
1081 "in any given path:\n\t%s" % (Inc, F, "\n\t".join(SearchPathList)))\r
1082\r
1083 self.FileCache[F] = FullPathDependList\r
1084 DependencySet.update(FullPathDependList)\r
1085\r
1086 DependencySet.update(ForceList)\r
1087 if File in DependencySet:\r
1088 DependencySet.remove(File)\r
1089 DependencyList = list(DependencySet) # remove duplicate ones\r
1090\r
1091 return DependencyList\r
1092\r
1093 _TemplateDict = property(_CreateTemplateDict)\r
1094\r
1095## CustomMakefile class\r
1096#\r
1097# This class encapsules makefie and its generation for module. It uses template to generate\r
1098# the content of makefile. The content of makefile will be got from ModuleAutoGen object.\r
1099#\r
1100class CustomMakefile(BuildFile):\r
1101 ## template used to generate the makefile for module with custom makefile\r
1102 _TEMPLATE_ = TemplateString('''\\r
1103${makefile_header}\r
1104\r
1105#\r
1106# Platform Macro Definition\r
1107#\r
1108PLATFORM_NAME = ${platform_name}\r
1109PLATFORM_GUID = ${platform_guid}\r
1110PLATFORM_VERSION = ${platform_version}\r
1111PLATFORM_RELATIVE_DIR = ${platform_relative_directory}\r
7a5f1426 1112PLATFORM_DIR = ${platform_dir}\r
f51461c8
LG
1113PLATFORM_OUTPUT_DIR = ${platform_output_directory}\r
1114\r
1115#\r
1116# Module Macro Definition\r
1117#\r
1118MODULE_NAME = ${module_name}\r
1119MODULE_GUID = ${module_guid}\r
867d1cd4 1120MODULE_NAME_GUID = ${module_name_guid}\r
f51461c8
LG
1121MODULE_VERSION = ${module_version}\r
1122MODULE_TYPE = ${module_type}\r
1123MODULE_FILE = ${module_file}\r
1124MODULE_FILE_BASE_NAME = ${module_file_base_name}\r
1125BASE_NAME = $(MODULE_NAME)\r
1126MODULE_RELATIVE_DIR = ${module_relative_directory}\r
01e418d6 1127MODULE_DIR = ${module_dir}\r
f51461c8
LG
1128\r
1129#\r
1130# Build Configuration Macro Definition\r
1131#\r
1132ARCH = ${architecture}\r
1133TOOLCHAIN = ${toolchain_tag}\r
1134TOOLCHAIN_TAG = ${toolchain_tag}\r
1135TARGET = ${build_target}\r
1136\r
1137#\r
1138# Build Directory Macro Definition\r
1139#\r
1140# PLATFORM_BUILD_DIR = ${platform_build_directory}\r
1141BUILD_DIR = ${platform_build_directory}\r
1142BIN_DIR = $(BUILD_DIR)${separator}${architecture}\r
1143LIB_DIR = $(BIN_DIR)\r
1144MODULE_BUILD_DIR = ${module_build_directory}\r
1145OUTPUT_DIR = ${module_output_directory}\r
1146DEBUG_DIR = ${module_debug_directory}\r
1147DEST_DIR_OUTPUT = $(OUTPUT_DIR)\r
1148DEST_DIR_DEBUG = $(DEBUG_DIR)\r
1149\r
1150#\r
1151# Tools definitions specific to this module\r
1152#\r
1153${BEGIN}${module_tool_definitions}\r
1154${END}\r
1155MAKE_FILE = ${makefile_path}\r
1156\r
1157#\r
1158# Shell Command Macro\r
1159#\r
1160${BEGIN}${shell_command_code} = ${shell_command}\r
1161${END}\r
1162\r
1163${custom_makefile_content}\r
1164\r
1165#\r
1166# Target used when called from platform makefile, which will bypass the build of dependent libraries\r
1167#\r
1168\r
1169pbuild: init all\r
1170\r
1171\r
1172#\r
1173# ModuleTarget\r
1174#\r
1175\r
1176mbuild: init all\r
1177\r
1178#\r
1179# Build Target used in multi-thread build mode, which no init target is needed\r
1180#\r
1181\r
1182tbuild: all\r
1183\r
1184#\r
1185# Initialization target: print build information and create necessary directories\r
1186#\r
1187init:\r
1188\t-@echo Building ... $(MODULE_DIR)${separator}$(MODULE_FILE) [$(ARCH)]\r
1189${BEGIN}\t-@${create_directory_command}\n${END}\\r
1190\r
1191''')\r
1192\r
1193 ## Constructor of CustomMakefile\r
1194 #\r
1195 # @param ModuleAutoGen Object of ModuleAutoGen class\r
1196 #\r
1197 def __init__(self, ModuleAutoGen):\r
1198 BuildFile.__init__(self, ModuleAutoGen)\r
1199 self.PlatformInfo = self._AutoGenObject.PlatformInfo\r
1200 self.IntermediateDirectoryList = ["$(DEBUG_DIR)", "$(OUTPUT_DIR)"]\r
1201\r
1202 # Compose a dict object containing information used to do replacement in template\r
1203 def _CreateTemplateDict(self):\r
1204 Separator = self._SEP_[self._FileType]\r
1205 if self._FileType not in self._AutoGenObject.CustomMakefile:\r
1206 EdkLogger.error('build', OPTION_NOT_SUPPORTED, "No custom makefile for %s" % self._FileType,\r
1207 ExtraData="[%s]" % str(self._AutoGenObject))\r
01e418d6 1208 MakefilePath = mws.join(\r
f51461c8
LG
1209 self._AutoGenObject.WorkspaceDir,\r
1210 self._AutoGenObject.CustomMakefile[self._FileType]\r
1211 )\r
1212 try:\r
1213 CustomMakefile = open(MakefilePath, 'r').read()\r
1214 except:\r
1215 EdkLogger.error('build', FILE_OPEN_FAILURE, File=str(self._AutoGenObject),\r
1216 ExtraData=self._AutoGenObject.CustomMakefile[self._FileType])\r
1217\r
1218 # tools definitions\r
1219 ToolsDef = []\r
1220 for Tool in self._AutoGenObject.BuildOption:\r
1221 # Don't generate MAKE_FLAGS in makefile. It's put in environment variable.\r
1222 if Tool == "MAKE":\r
1223 continue\r
1224 for Attr in self._AutoGenObject.BuildOption[Tool]:\r
1225 if Attr == "FAMILY":\r
1226 continue\r
1227 elif Attr == "PATH":\r
1228 ToolsDef.append("%s = %s" % (Tool, self._AutoGenObject.BuildOption[Tool][Attr]))\r
1229 else:\r
1230 ToolsDef.append("%s_%s = %s" % (Tool, Attr, self._AutoGenObject.BuildOption[Tool][Attr]))\r
1231 ToolsDef.append("")\r
1232\r
1233 MakefileName = self._FILE_NAME_[self._FileType]\r
1234 MakefileTemplateDict = {\r
1235 "makefile_header" : self._FILE_HEADER_[self._FileType],\r
1236 "makefile_path" : os.path.join("$(MODULE_BUILD_DIR)", MakefileName),\r
1237 "platform_name" : self.PlatformInfo.Name,\r
1238 "platform_guid" : self.PlatformInfo.Guid,\r
1239 "platform_version" : self.PlatformInfo.Version,\r
1240 "platform_relative_directory": self.PlatformInfo.SourceDir,\r
1241 "platform_output_directory" : self.PlatformInfo.OutputDir,\r
017fb1cd 1242 "platform_dir" : self._AutoGenObject.Macros["PLATFORM_DIR"],\r
f51461c8
LG
1243\r
1244 "module_name" : self._AutoGenObject.Name,\r
1245 "module_guid" : self._AutoGenObject.Guid,\r
867d1cd4 1246 "module_name_guid" : self._AutoGenObject._GetUniqueBaseName(),\r
f51461c8
LG
1247 "module_version" : self._AutoGenObject.Version,\r
1248 "module_type" : self._AutoGenObject.ModuleType,\r
1249 "module_file" : self._AutoGenObject.MetaFile,\r
1250 "module_file_base_name" : self._AutoGenObject.MetaFile.BaseName,\r
1251 "module_relative_directory" : self._AutoGenObject.SourceDir,\r
01e418d6 1252 "module_dir" : mws.join (self._AutoGenObject.WorkspaceDir, self._AutoGenObject.SourceDir),\r
f51461c8
LG
1253\r
1254 "architecture" : self._AutoGenObject.Arch,\r
1255 "toolchain_tag" : self._AutoGenObject.ToolChain,\r
1256 "build_target" : self._AutoGenObject.BuildTarget,\r
1257\r
1258 "platform_build_directory" : self.PlatformInfo.BuildDir,\r
1259 "module_build_directory" : self._AutoGenObject.BuildDir,\r
1260 "module_output_directory" : self._AutoGenObject.OutputDir,\r
1261 "module_debug_directory" : self._AutoGenObject.DebugDir,\r
1262\r
1263 "separator" : Separator,\r
1264 "module_tool_definitions" : ToolsDef,\r
1265\r
1266 "shell_command_code" : self._SHELL_CMD_[self._FileType].keys(),\r
1267 "shell_command" : self._SHELL_CMD_[self._FileType].values(),\r
1268\r
1269 "create_directory_command" : self.GetCreateDirectoryCommand(self.IntermediateDirectoryList),\r
1270 "custom_makefile_content" : CustomMakefile\r
1271 }\r
1272\r
1273 return MakefileTemplateDict\r
1274\r
1275 _TemplateDict = property(_CreateTemplateDict)\r
1276\r
1277## PlatformMakefile class\r
1278#\r
1279# This class encapsules makefie and its generation for platform. It uses\r
1280# template to generate the content of makefile. The content of makefile will be\r
1281# got from PlatformAutoGen object.\r
1282#\r
1283class PlatformMakefile(BuildFile):\r
1284 ## template used to generate the makefile for platform\r
1285 _TEMPLATE_ = TemplateString('''\\r
1286${makefile_header}\r
1287\r
1288#\r
1289# Platform Macro Definition\r
1290#\r
1291PLATFORM_NAME = ${platform_name}\r
1292PLATFORM_GUID = ${platform_guid}\r
1293PLATFORM_VERSION = ${platform_version}\r
1294PLATFORM_FILE = ${platform_file}\r
7a5f1426 1295PLATFORM_DIR = ${platform_dir}\r
f51461c8
LG
1296PLATFORM_OUTPUT_DIR = ${platform_output_directory}\r
1297\r
1298#\r
1299# Build Configuration Macro Definition\r
1300#\r
1301TOOLCHAIN = ${toolchain_tag}\r
1302TOOLCHAIN_TAG = ${toolchain_tag}\r
1303TARGET = ${build_target}\r
1304\r
1305#\r
1306# Build Directory Macro Definition\r
1307#\r
1308BUILD_DIR = ${platform_build_directory}\r
1309FV_DIR = ${platform_build_directory}${separator}FV\r
1310\r
1311#\r
1312# Shell Command Macro\r
1313#\r
1314${BEGIN}${shell_command_code} = ${shell_command}\r
1315${END}\r
1316\r
1317MAKE = ${make_path}\r
1318MAKE_FILE = ${makefile_path}\r
1319\r
1320#\r
1321# Default target\r
1322#\r
1323all: init build_libraries build_modules\r
1324\r
1325#\r
1326# Initialization target: print build information and create necessary directories\r
1327#\r
1328init:\r
1329\t-@echo Building ... $(PLATFORM_FILE) [${build_architecture_list}]\r
1330\t${BEGIN}-@${create_directory_command}\r
1331\t${END}\r
1332#\r
1333# library build target\r
1334#\r
1335libraries: init build_libraries\r
1336\r
1337#\r
1338# module build target\r
1339#\r
1340modules: init build_libraries build_modules\r
1341\r
1342#\r
1343# Build all libraries:\r
1344#\r
1345build_libraries:\r
1346${BEGIN}\t@"$(MAKE)" $(MAKE_FLAGS) -f ${library_makefile_list} pbuild\r
1347${END}\t@cd $(BUILD_DIR)\r
1348\r
1349#\r
1350# Build all modules:\r
1351#\r
1352build_modules:\r
1353${BEGIN}\t@"$(MAKE)" $(MAKE_FLAGS) -f ${module_makefile_list} pbuild\r
1354${END}\t@cd $(BUILD_DIR)\r
1355\r
1356#\r
1357# Clean intermediate files\r
1358#\r
1359clean:\r
1360\t${BEGIN}-@${library_build_command} clean\r
1361\t${END}${BEGIN}-@${module_build_command} clean\r
1362\t${END}@cd $(BUILD_DIR)\r
1363\r
1364#\r
1365# Clean all generated files except to makefile\r
1366#\r
1367cleanall:\r
1368${BEGIN}\t${cleanall_command}\r
1369${END}\r
1370\r
1371#\r
1372# Clean all library files\r
1373#\r
1374cleanlib:\r
1375\t${BEGIN}-@${library_build_command} cleanall\r
1376\t${END}@cd $(BUILD_DIR)\n\r
1377''')\r
1378\r
1379 ## Constructor of PlatformMakefile\r
1380 #\r
1381 # @param ModuleAutoGen Object of PlatformAutoGen class\r
1382 #\r
1383 def __init__(self, PlatformAutoGen):\r
1384 BuildFile.__init__(self, PlatformAutoGen)\r
1385 self.ModuleBuildCommandList = []\r
1386 self.ModuleMakefileList = []\r
1387 self.IntermediateDirectoryList = []\r
1388 self.ModuleBuildDirectoryList = []\r
1389 self.LibraryBuildDirectoryList = []\r
03af2753 1390 self.LibraryMakeCommandList = []\r
f51461c8
LG
1391\r
1392 # Compose a dict object containing information used to do replacement in template\r
1393 def _CreateTemplateDict(self):\r
1394 Separator = self._SEP_[self._FileType]\r
1395\r
1396 PlatformInfo = self._AutoGenObject\r
1397 if "MAKE" not in PlatformInfo.ToolDefinition or "PATH" not in PlatformInfo.ToolDefinition["MAKE"]:\r
1398 EdkLogger.error("build", OPTION_MISSING, "No MAKE command defined. Please check your tools_def.txt!",\r
1399 ExtraData="[%s]" % str(self._AutoGenObject))\r
1400\r
1401 self.IntermediateDirectoryList = ["$(BUILD_DIR)"]\r
1402 self.ModuleBuildDirectoryList = self.GetModuleBuildDirectoryList()\r
1403 self.LibraryBuildDirectoryList = self.GetLibraryBuildDirectoryList()\r
1404\r
1405 MakefileName = self._FILE_NAME_[self._FileType]\r
1406 LibraryMakefileList = []\r
1407 LibraryMakeCommandList = []\r
1408 for D in self.LibraryBuildDirectoryList:\r
1409 D = self.PlaceMacro(D, {"BUILD_DIR":PlatformInfo.BuildDir})\r
1410 Makefile = os.path.join(D, MakefileName)\r
1411 Command = self._MAKE_TEMPLATE_[self._FileType] % {"file":Makefile}\r
1412 LibraryMakefileList.append(Makefile)\r
1413 LibraryMakeCommandList.append(Command)\r
03af2753 1414 self.LibraryMakeCommandList = LibraryMakeCommandList\r
f51461c8
LG
1415\r
1416 ModuleMakefileList = []\r
1417 ModuleMakeCommandList = []\r
1418 for D in self.ModuleBuildDirectoryList:\r
1419 D = self.PlaceMacro(D, {"BUILD_DIR":PlatformInfo.BuildDir})\r
1420 Makefile = os.path.join(D, MakefileName)\r
1421 Command = self._MAKE_TEMPLATE_[self._FileType] % {"file":Makefile}\r
1422 ModuleMakefileList.append(Makefile)\r
1423 ModuleMakeCommandList.append(Command)\r
1424\r
1425 MakefileTemplateDict = {\r
1426 "makefile_header" : self._FILE_HEADER_[self._FileType],\r
1427 "makefile_path" : os.path.join("$(BUILD_DIR)", MakefileName),\r
1428 "make_path" : PlatformInfo.ToolDefinition["MAKE"]["PATH"],\r
1429 "makefile_name" : MakefileName,\r
1430 "platform_name" : PlatformInfo.Name,\r
1431 "platform_guid" : PlatformInfo.Guid,\r
1432 "platform_version" : PlatformInfo.Version,\r
1433 "platform_file" : self._AutoGenObject.MetaFile,\r
1434 "platform_relative_directory": PlatformInfo.SourceDir,\r
1435 "platform_output_directory" : PlatformInfo.OutputDir,\r
1436 "platform_build_directory" : PlatformInfo.BuildDir,\r
017fb1cd 1437 "platform_dir" : self._AutoGenObject.Macros["PLATFORM_DIR"],\r
f51461c8
LG
1438\r
1439 "toolchain_tag" : PlatformInfo.ToolChain,\r
1440 "build_target" : PlatformInfo.BuildTarget,\r
1441 "shell_command_code" : self._SHELL_CMD_[self._FileType].keys(),\r
1442 "shell_command" : self._SHELL_CMD_[self._FileType].values(),\r
1443 "build_architecture_list" : self._AutoGenObject.Arch,\r
1444 "architecture" : self._AutoGenObject.Arch,\r
1445 "separator" : Separator,\r
1446 "create_directory_command" : self.GetCreateDirectoryCommand(self.IntermediateDirectoryList),\r
1447 "cleanall_command" : self.GetRemoveDirectoryCommand(self.IntermediateDirectoryList),\r
1448 "library_makefile_list" : LibraryMakefileList,\r
1449 "module_makefile_list" : ModuleMakefileList,\r
1450 "library_build_command" : LibraryMakeCommandList,\r
1451 "module_build_command" : ModuleMakeCommandList,\r
1452 }\r
1453\r
1454 return MakefileTemplateDict\r
1455\r
1456 ## Get the root directory list for intermediate files of all modules build\r
1457 #\r
1458 # @retval list The list of directory\r
1459 #\r
1460 def GetModuleBuildDirectoryList(self):\r
1461 DirList = []\r
1462 for ModuleAutoGen in self._AutoGenObject.ModuleAutoGenList:\r
97fa0ee9
YL
1463 if not ModuleAutoGen.IsBinaryModule:\r
1464 DirList.append(os.path.join(self._AutoGenObject.BuildDir, ModuleAutoGen.BuildDir))\r
f51461c8
LG
1465 return DirList\r
1466\r
1467 ## Get the root directory list for intermediate files of all libraries build\r
1468 #\r
1469 # @retval list The list of directory\r
1470 #\r
1471 def GetLibraryBuildDirectoryList(self):\r
1472 DirList = []\r
1473 for LibraryAutoGen in self._AutoGenObject.LibraryAutoGenList:\r
97fa0ee9
YL
1474 if not LibraryAutoGen.IsBinaryModule:\r
1475 DirList.append(os.path.join(self._AutoGenObject.BuildDir, LibraryAutoGen.BuildDir))\r
f51461c8
LG
1476 return DirList\r
1477\r
1478 _TemplateDict = property(_CreateTemplateDict)\r
1479\r
1480## TopLevelMakefile class\r
1481#\r
1482# This class encapsules makefie and its generation for entrance makefile. It\r
1483# uses template to generate the content of makefile. The content of makefile\r
1484# will be got from WorkspaceAutoGen object.\r
1485#\r
1486class TopLevelMakefile(BuildFile):\r
1487 ## template used to generate toplevel makefile\r
97fa0ee9 1488 _TEMPLATE_ = TemplateString('''${BEGIN}\tGenFds -f ${fdf_file} --conf=${conf_directory} -o ${platform_build_directory} -t ${toolchain_tag} -b ${build_target} -p ${active_platform} -a ${build_architecture_list} ${extra_options}${END}${BEGIN} -r ${fd} ${END}${BEGIN} -i ${fv} ${END}${BEGIN} -C ${cap} ${END}${BEGIN} -D ${macro} ${END}''')\r
f51461c8
LG
1489\r
1490 ## Constructor of TopLevelMakefile\r
1491 #\r
1492 # @param Workspace Object of WorkspaceAutoGen class\r
1493 #\r
1494 def __init__(self, Workspace):\r
1495 BuildFile.__init__(self, Workspace)\r
1496 self.IntermediateDirectoryList = []\r
1497\r
1498 # Compose a dict object containing information used to do replacement in template\r
1499 def _CreateTemplateDict(self):\r
1500 Separator = self._SEP_[self._FileType]\r
1501\r
1502 # any platform autogen object is ok because we just need common information\r
1503 PlatformInfo = self._AutoGenObject\r
1504\r
1505 if "MAKE" not in PlatformInfo.ToolDefinition or "PATH" not in PlatformInfo.ToolDefinition["MAKE"]:\r
1506 EdkLogger.error("build", OPTION_MISSING, "No MAKE command defined. Please check your tools_def.txt!",\r
1507 ExtraData="[%s]" % str(self._AutoGenObject))\r
1508\r
1509 for Arch in PlatformInfo.ArchList:\r
1510 self.IntermediateDirectoryList.append(Separator.join(["$(BUILD_DIR)", Arch]))\r
1511 self.IntermediateDirectoryList.append("$(FV_DIR)")\r
1512\r
1513 # TRICK: for not generating GenFds call in makefile if no FDF file\r
1514 MacroList = []\r
1515 if PlatformInfo.FdfFile != None and PlatformInfo.FdfFile != "":\r
1516 FdfFileList = [PlatformInfo.FdfFile]\r
1517 # macros passed to GenFds\r
1518 MacroList.append('"%s=%s"' % ("EFI_SOURCE", GlobalData.gEfiSource.replace('\\', '\\\\')))\r
1519 MacroList.append('"%s=%s"' % ("EDK_SOURCE", GlobalData.gEdkSource.replace('\\', '\\\\')))\r
1520 MacroDict = {}\r
1521 MacroDict.update(GlobalData.gGlobalDefines)\r
1522 MacroDict.update(GlobalData.gCommandLineDefines)\r
1523 MacroDict.pop("EFI_SOURCE", "dummy")\r
1524 MacroDict.pop("EDK_SOURCE", "dummy")\r
1525 for MacroName in MacroDict:\r
1526 if MacroDict[MacroName] != "":\r
1527 MacroList.append('"%s=%s"' % (MacroName, MacroDict[MacroName].replace('\\', '\\\\')))\r
1528 else:\r
1529 MacroList.append('"%s"' % MacroName)\r
1530 else:\r
1531 FdfFileList = []\r
1532\r
1533 # pass extra common options to external program called in makefile, currently GenFds.exe\r
1534 ExtraOption = ''\r
1535 LogLevel = EdkLogger.GetLevel()\r
1536 if LogLevel == EdkLogger.VERBOSE:\r
1537 ExtraOption += " -v"\r
1538 elif LogLevel <= EdkLogger.DEBUG_9:\r
1539 ExtraOption += " -d %d" % (LogLevel - 1)\r
1540 elif LogLevel == EdkLogger.QUIET:\r
1541 ExtraOption += " -q"\r
1542\r
1543 if GlobalData.gCaseInsensitive:\r
1544 ExtraOption += " -c"\r
37de70b7
YZ
1545 if GlobalData.gEnableGenfdsMultiThread:\r
1546 ExtraOption += " --genfds-multi-thread"\r
97fa0ee9
YL
1547 if GlobalData.gIgnoreSource:\r
1548 ExtraOption += " --ignore-sources"\r
1549\r
6b17c11b
YZ
1550 if GlobalData.BuildOptionPcd:\r
1551 for index, option in enumerate(GlobalData.gCommand):\r
1552 if "--pcd" == option and GlobalData.gCommand[index+1]:\r
db55dac7
YZ
1553 pcdName, pcdValue = GlobalData.gCommand[index+1].split('=')\r
1554 if pcdValue.startswith('H'):\r
1555 pcdValue = 'H' + '"' + pcdValue[1:] + '"'\r
1556 ExtraOption += " --pcd " + pcdName + '=' + pcdValue\r
f9bba774
FY
1557 elif pcdValue.startswith("L'"):\r
1558 ExtraOption += "--pcd " + pcdName + '=' + pcdValue\r
db55dac7
YZ
1559 elif pcdValue.startswith('L'):\r
1560 pcdValue = 'L' + '"' + pcdValue[1:] + '"'\r
1561 ExtraOption += " --pcd " + pcdName + '=' + pcdValue\r
1562 else:\r
1563 ExtraOption += " --pcd " + GlobalData.gCommand[index+1]\r
6b17c11b 1564\r
f51461c8
LG
1565 MakefileName = self._FILE_NAME_[self._FileType]\r
1566 SubBuildCommandList = []\r
1567 for A in PlatformInfo.ArchList:\r
1568 Command = self._MAKE_TEMPLATE_[self._FileType] % {"file":os.path.join("$(BUILD_DIR)", A, MakefileName)}\r
1569 SubBuildCommandList.append(Command)\r
1570\r
1571 MakefileTemplateDict = {\r
1572 "makefile_header" : self._FILE_HEADER_[self._FileType],\r
1573 "makefile_path" : os.path.join("$(BUILD_DIR)", MakefileName),\r
1574 "make_path" : PlatformInfo.ToolDefinition["MAKE"]["PATH"],\r
1575 "platform_name" : PlatformInfo.Name,\r
1576 "platform_guid" : PlatformInfo.Guid,\r
1577 "platform_version" : PlatformInfo.Version,\r
1578 "platform_build_directory" : PlatformInfo.BuildDir,\r
97fa0ee9 1579 "conf_directory" : GlobalData.gConfDirectory,\r
f51461c8
LG
1580\r
1581 "toolchain_tag" : PlatformInfo.ToolChain,\r
1582 "build_target" : PlatformInfo.BuildTarget,\r
1583 "shell_command_code" : self._SHELL_CMD_[self._FileType].keys(),\r
1584 "shell_command" : self._SHELL_CMD_[self._FileType].values(),\r
1585 'arch' : list(PlatformInfo.ArchList),\r
1586 "build_architecture_list" : ','.join(PlatformInfo.ArchList),\r
1587 "separator" : Separator,\r
1588 "create_directory_command" : self.GetCreateDirectoryCommand(self.IntermediateDirectoryList),\r
1589 "cleanall_command" : self.GetRemoveDirectoryCommand(self.IntermediateDirectoryList),\r
1590 "sub_build_command" : SubBuildCommandList,\r
1591 "fdf_file" : FdfFileList,\r
1592 "active_platform" : str(PlatformInfo),\r
1593 "fd" : PlatformInfo.FdTargetList,\r
1594 "fv" : PlatformInfo.FvTargetList,\r
1595 "cap" : PlatformInfo.CapTargetList,\r
1596 "extra_options" : ExtraOption,\r
1597 "macro" : MacroList,\r
1598 }\r
1599\r
1600 return MakefileTemplateDict\r
1601\r
1602 ## Get the root directory list for intermediate files of all modules build\r
1603 #\r
1604 # @retval list The list of directory\r
1605 #\r
1606 def GetModuleBuildDirectoryList(self):\r
1607 DirList = []\r
1608 for ModuleAutoGen in self._AutoGenObject.ModuleAutoGenList:\r
97fa0ee9
YL
1609 if not ModuleAutoGen.IsBinaryModule:\r
1610 DirList.append(os.path.join(self._AutoGenObject.BuildDir, ModuleAutoGen.BuildDir))\r
f51461c8
LG
1611 return DirList\r
1612\r
1613 ## Get the root directory list for intermediate files of all libraries build\r
1614 #\r
1615 # @retval list The list of directory\r
1616 #\r
1617 def GetLibraryBuildDirectoryList(self):\r
1618 DirList = []\r
1619 for LibraryAutoGen in self._AutoGenObject.LibraryAutoGenList:\r
97fa0ee9
YL
1620 if not LibraryAutoGen.IsBinaryModule:\r
1621 DirList.append(os.path.join(self._AutoGenObject.BuildDir, LibraryAutoGen.BuildDir))\r
f51461c8
LG
1622 return DirList\r
1623\r
1624 _TemplateDict = property(_CreateTemplateDict)\r
1625\r
1626# This acts like the main() function for the script, unless it is 'import'ed into another script.\r
1627if __name__ == '__main__':\r
1628 pass\r
1629\r