mirror of https://github.com/acidanthera/audk.git
BaseTools:build failure in CLANGPDB tool chain
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=2520 Incremental build failure in CLANGPDB tool chain on Windows host The build failure is like below when do incremental build. The root cause is in generated deps_target file. It has one line ":". Signed-off-by: Zhiju.Fan <zhijux.fan@intel.com> Cc: Liming Gao <liming.gao@intel.com> Cc: Bob Feng <bob.c.feng@intel.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com>
This commit is contained in:
parent
02b7b861b1
commit
422bf2725b
|
@ -111,6 +111,8 @@ class IncludesAutoGen():
|
|||
continue
|
||||
dependency_file = item.strip(" \\\n")
|
||||
dependency_file = dependency_file.strip('''"''')
|
||||
if dependency_file == '':
|
||||
continue
|
||||
if os.path.normpath(dependency_file +".deps") == abspath:
|
||||
continue
|
||||
filename = os.path.basename(dependency_file).strip()
|
||||
|
|
Loading…
Reference in New Issue