From 651cad36c1a401030ba489698b755379845825e5 Mon Sep 17 00:00:00 2001 From: jwang36 Date: Fri, 12 Oct 2007 02:31:44 +0000 Subject: [PATCH] Updated with the latest changes of build tools. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4104 6f19259b-4bc3-4df7-8a09-765794883524 --- BaseTools/ChangeLog.txt | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/BaseTools/ChangeLog.txt b/BaseTools/ChangeLog.txt index 064f8b7c4c..752d110ea4 100644 --- a/BaseTools/ChangeLog.txt +++ b/BaseTools/ChangeLog.txt @@ -38,6 +38,37 @@ EDK_0000: Compatible: owner !!!!!!!!!!!!!!!!!! End of Notes !!!!!!!!!!!!!!!!!! ########################################################################################## +========================================================================================== +EDK_4096: Non-Compatible: jwang36 + + Class_BuildTool: + 1) Removed the calling of vsvars32.bat in edksetup.bat, unless + "--nt32" switch is used. + 2) Added MAKE command in tools_def.txt. This is used to locate where + the nmake.exe or make.exe is because it will not be in PATH any more. + 3) Removed the calling of vsvars32.bat in toolsetup.bat. + 4) Solved the hang issue of build.exe when error occurred or Ctrl+C is + pressed. + 5) Passed "-v/-d/-q" command line option to GenFds.exe in makefile if + it's used by build.exe. + + Code Change : + 1) BaseTools/Bin/Win32/build.exe + 2) BaseTools/Bin/Win32/GenFds.exe + 3) BaseTools/Conf/tools_def.template + 4) BaseTools/toolsetup.bat + 5) edksetup.bat + + Possible Impacts: + 1) Nt32Pkg build needs to run vsvars32.bat before edksetup.bat or run + edksetup.bat with "--nt32" option, like + + edksetup.bat --nt32 newbuild + + 2) $(WORKSPACE)/Conf/tools_def.txt must be deleted before running + edksetup.bat because of new tools_def.template. Otherwise the + build.exe cannot find the nmake.exe to call. + ========================================================================================== EDK_3947: Compatible: jwang36