]> git.proxmox.com Git - mirror_edk2.git/commit
BaseTools:fix issue for decode the stdout/stderr byte arrays
authorFan, ZhijuX <zhijux.fan@intel.com>
Mon, 2 Dec 2019 03:50:48 +0000 (11:50 +0800)
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Tue, 24 Mar 2020 02:27:27 +0000 (02:27 +0000)
commit0dee1d1358c95e07637876af1f508f0fd694a809
tree347cc0d2b6a81ffbdcdadd0d08d4077eff80eb88
parent0c8ea9fe1adbbee230ee0c68f28b68ca2b0534bc
BaseTools:fix issue for decode the stdout/stderr byte arrays

BZ:https://bugzilla.tianocore.org/show_bug.cgi?id=2365

This patch is to fix a build tool regression issue which was introduced
by commit 8ddec24dea74.

compiler output message includes localized string.
So build failed when code decode the stdout/stderr byte arrays.
The cause of the build failed is that Commit 8ddec24dea74
removed "errors='ignore'".

The build tool does not need to deal with localized string,
so we need to add "errors='ignore'".

this function is only invoked for structure PCDs.
Build failed if structurePcd is used in platform dsc file.
The patch is going to fixed this issue

Cc: Liming Gao <liming.gao@intel.com>
Cc: Bob Feng <bob.c.feng@intel.com>
Signed-off-by: Zhiju.Fan <zhijux.fan@intel.com>
Reviewed-by: Bob Feng <bob.c.feng@intel.com>
BaseTools/Source/Python/Workspace/DscBuildData.py