]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/build/build.py
This patch is going to retire the top level makefile on BaseTools for supporting...
[mirror_edk2.git] / BaseTools / Source / Python / build / build.py
index bd43f2cff1c73b4a9ea4caa9ad2b9c3aa9083765..56dbc5b39b354ec333202a51146fb99203aff6f8 100644 (file)
@@ -866,7 +866,7 @@ class Build():
     #   @param  CreateDepModuleMakeFile     Flag used to indicate creating makefile\r
     #                                       for dependent modules/Libraries\r
     #\r
-    def _Build(self, Target, AutoGenObject, CreateDepsCodeFile=True, CreateDepsMakeFile=True):\r
+    def _BuildPa(self, Target, AutoGenObject, CreateDepsCodeFile=True, CreateDepsMakeFile=True, BuildModule=False):\r
         if AutoGenObject == None:\r
             return False\r
 \r
@@ -883,7 +883,6 @@ class Build():
             if not self.SkipAutoGen or Target == 'genmake':\r
                 self.Progress.Start("Generating makefile")\r
                 AutoGenObject.CreateMakeFile(CreateDepsMakeFile)\r
-                AutoGenObject.CreateAsBuiltInf()\r
                 self.Progress.Stop("done!")\r
             if Target == "genmake":\r
                 return True\r
@@ -903,8 +902,164 @@ class Build():
                                 (AutoGenObject.BuildTarget, AutoGenObject.ToolChain, AutoGenObject.Arch),\r
                             ExtraData=str(AutoGenObject))\r
 \r
+        makefile = GenMake.BuildFile(AutoGenObject)._FILE_NAME_[GenMake.gMakeType]\r
+\r
+        # genfds\r
+        if Target == 'fds':\r
+            LaunchCommand(AutoGenObject.GenFdsCommand, AutoGenObject.MakeFileDir)\r
+            return True\r
+\r
+        # run\r
+        if Target == 'run':\r
+            RunDir = os.path.normpath(os.path.join(AutoGenObject.BuildDir, 'IA32'))\r
+            Command = '.\SecMain'\r
+            os.chdir(RunDir)\r
+            LaunchCommand(Command, RunDir)\r
+            return True\r
+\r
+        # build modules\r
+        if BuildModule:\r
+            BuildCommand = BuildCommand + [Target]\r
+            LaunchCommand(BuildCommand, AutoGenObject.MakeFileDir)\r
+            self.CreateAsBuiltInf()\r
+            return True\r
+\r
+        # build library\r
+        if Target == 'libraries':\r
+            for Lib in AutoGenObject.LibraryBuildDirectoryList:\r
+                NewBuildCommand = BuildCommand + ['-f', os.path.normpath(os.path.join(Lib, makefile)), 'pbuild']\r
+                LaunchCommand(NewBuildCommand, AutoGenObject.MakeFileDir)\r
+            return True\r
+\r
+        # build module\r
+        if Target == 'modules':\r
+            for Lib in AutoGenObject.LibraryBuildDirectoryList:\r
+                NewBuildCommand = BuildCommand + ['-f', os.path.normpath(os.path.join(Lib, makefile)), 'pbuild']\r
+                LaunchCommand(NewBuildCommand, AutoGenObject.MakeFileDir)\r
+            for Mod in AutoGenObject.ModuleBuildDirectoryList:\r
+                NewBuildCommand = BuildCommand + ['-f', os.path.normpath(os.path.join(Mod, makefile)), 'pbuild']\r
+                LaunchCommand(NewBuildCommand, AutoGenObject.MakeFileDir)\r
+            self.CreateAsBuiltInf()\r
+            return True\r
+\r
+        # cleanlib\r
+        if Target == 'cleanlib':\r
+            for Lib in AutoGenObject.LibraryBuildDirectoryList:\r
+                LibMakefile = os.path.normpath(os.path.join(Lib, makefile))\r
+                if os.path.exists(LibMakefile):\r
+                    NewBuildCommand = BuildCommand + ['-f', LibMakefile, 'cleanall']\r
+                    LaunchCommand(NewBuildCommand, AutoGenObject.MakeFileDir)\r
+            return True\r
+\r
+        # clean\r
+        if Target == 'clean':\r
+            for Mod in AutoGenObject.ModuleBuildDirectoryList:\r
+                ModMakefile = os.path.normpath(os.path.join(Mod, makefile))\r
+                if os.path.exists(ModMakefile):\r
+                    NewBuildCommand = BuildCommand + ['-f', ModMakefile, 'cleanall']\r
+                    LaunchCommand(NewBuildCommand, AutoGenObject.MakeFileDir)\r
+            for Lib in AutoGenObject.LibraryBuildDirectoryList:\r
+                LibMakefile = os.path.normpath(os.path.join(Lib, makefile))\r
+                if os.path.exists(LibMakefile):\r
+                    NewBuildCommand = BuildCommand + ['-f', LibMakefile, 'cleanall']\r
+                    LaunchCommand(NewBuildCommand, AutoGenObject.MakeFileDir)\r
+            return True\r
+\r
+        # cleanall\r
+        if Target == 'cleanall':\r
+            try:\r
+                #os.rmdir(AutoGenObject.BuildDir)\r
+                RemoveDirectory(AutoGenObject.BuildDir, True)\r
+                #\r
+                # First should close DB.\r
+                #\r
+                self.Db.Close()\r
+                RemoveDirectory(os.path.dirname(GlobalData.gDatabasePath), True)\r
+            except WindowsError, X:\r
+                EdkLogger.error("build", FILE_DELETE_FAILURE, ExtraData=str(X))\r
+        return True\r
+\r
+    ## Build a module or platform\r
+    #\r
+    # Create autogen code and makefile for a module or platform, and the launch\r
+    # "make" command to build it\r
+    #\r
+    #   @param  Target                      The target of build command\r
+    #   @param  Platform                    The platform file\r
+    #   @param  Module                      The module file\r
+    #   @param  BuildTarget                 The name of build target, one of "DEBUG", "RELEASE"\r
+    #   @param  ToolChain                   The name of toolchain to build\r
+    #   @param  Arch                        The arch of the module/platform\r
+    #   @param  CreateDepModuleCodeFile     Flag used to indicate creating code\r
+    #                                       for dependent modules/Libraries\r
+    #   @param  CreateDepModuleMakeFile     Flag used to indicate creating makefile\r
+    #                                       for dependent modules/Libraries\r
+    #\r
+    def _Build(self, Target, AutoGenObject, CreateDepsCodeFile=True, CreateDepsMakeFile=True, BuildModule=False):\r
+        if AutoGenObject == None:\r
+            return False\r
+\r
+        # skip file generation for cleanxxx targets, run and fds target\r
+        if Target not in ['clean', 'cleanlib', 'cleanall', 'run', 'fds']:\r
+            # for target which must generate AutoGen code and makefile\r
+            if not self.SkipAutoGen or Target == 'genc':\r
+                self.Progress.Start("Generating code")\r
+                AutoGenObject.CreateCodeFile(CreateDepsCodeFile)\r
+                self.Progress.Stop("done!")\r
+            if Target == "genc":\r
+                return True\r
+\r
+            if not self.SkipAutoGen or Target == 'genmake':\r
+                self.Progress.Start("Generating makefile")\r
+                AutoGenObject.CreateMakeFile(CreateDepsMakeFile)\r
+                #AutoGenObject.CreateAsBuiltInf()\r
+                self.Progress.Stop("done!")\r
+            if Target == "genmake":\r
+                return True\r
+        else:\r
+            # always recreate top/platform makefile when clean, just in case of inconsistency\r
+            AutoGenObject.CreateCodeFile(False)\r
+            AutoGenObject.CreateMakeFile(False)\r
+\r
+        if EdkLogger.GetLevel() == EdkLogger.QUIET:\r
+            EdkLogger.quiet("Building ... %s" % repr(AutoGenObject))\r
+\r
+        BuildCommand = AutoGenObject.BuildCommand\r
+        if BuildCommand == None or len(BuildCommand) == 0:\r
+            EdkLogger.error("build", OPTION_MISSING,\r
+                            "No build command found for this module. "\r
+                            "Please check your setting of %s_%s_%s_MAKE_PATH in Conf/tools_def.txt file." %\r
+                                (AutoGenObject.BuildTarget, AutoGenObject.ToolChain, AutoGenObject.Arch),\r
+                            ExtraData=str(AutoGenObject))\r
+\r
+        # genfds\r
+        if Target == 'fds':\r
+            LaunchCommand(AutoGenObject.GenFdsCommand, AutoGenObject.MakeFileDir)\r
+            return True\r
+\r
+        # run\r
+        if Target == 'run':\r
+            RunDir = os.path.normpath(os.path.join(AutoGenObject.BuildDir, 'IA32'))\r
+            Command = '.\SecMain'\r
+            os.chdir(RunDir)\r
+            LaunchCommand(Command, RunDir)\r
+            return True\r
+\r
+        # build modules\r
         BuildCommand = BuildCommand + [Target]\r
-        LaunchCommand(BuildCommand, AutoGenObject.MakeFileDir)\r
+        if BuildModule:\r
+            LaunchCommand(BuildCommand, AutoGenObject.MakeFileDir)\r
+            self.CreateAsBuiltInf()\r
+            return True\r
+\r
+        # build library\r
+        if Target == 'libraries':\r
+            pass\r
+\r
+        # not build modules\r
+\r
+\r
+        # cleanall\r
         if Target == 'cleanall':\r
             try:\r
                 #os.rmdir(AutoGenObject.BuildDir)\r
@@ -1244,7 +1399,16 @@ class Build():
                 self.LoadFixAddress = Wa.Platform.LoadFixAddress\r
                 self.BuildReport.AddPlatformReport(Wa)\r
                 self.Progress.Stop("done!")\r
-                self._Build(self.Target, Wa)\r
+                for Arch in Wa.ArchList:\r
+                    GlobalData.gGlobalDefines['ARCH'] = Arch\r
+                    Pa = PlatformAutoGen(Wa, self.PlatformFile, BuildTarget, ToolChain, Arch)\r
+                    for Module in Pa.Platform.Modules:\r
+                        # Get ModuleAutoGen object to generate C code file and makefile\r
+                        Ma = ModuleAutoGen(Wa, Module, BuildTarget, ToolChain, Arch, self.PlatformFile)\r
+                        if Ma == None:\r
+                            continue\r
+                        self.BuildModules.append(Ma)\r
+                    self._BuildPa(self.Target, Pa)\r
 \r
                 # Create MAP file when Load Fix Address is enabled.\r
                 if self.Target in ["", "all", "fds"]:\r
@@ -1327,7 +1491,9 @@ class Build():
                     Ma = ModuleAutoGen(Wa, self.ModuleFile, BuildTarget, ToolChain, Arch, self.PlatformFile)\r
                     if Ma == None: continue\r
                     MaList.append(Ma)\r
-                    self._Build(self.Target, Ma)\r
+                    self.BuildModules.append(Ma)\r
+                    if not Ma.IsBinaryModule:\r
+                        self._Build(self.Target, Ma, BuildModule=True)\r
 \r
                 self.BuildReport.AddPlatformReport(Wa, MaList)\r
                 if MaList == []:\r
@@ -1508,7 +1674,8 @@ class Build():
                         #\r
                         # Generate FD image if there's a FDF file found\r
                         #\r
-                        LaunchCommand(Wa.BuildCommand + ["fds"], Wa.MakeFileDir)\r
+                        LaunchCommand(Wa.GenFdsCommand, os.getcwd())\r
+\r
                         #\r
                         # Create MAP file for all platform FVs after GenFds.\r
                         #\r