From 6dd2e348488a0345385ea2f018ae5830d19785ed Mon Sep 17 00:00:00 2001 From: Jerry Yu Date: Tue, 8 Mar 2022 14:13:59 +0800 Subject: [PATCH] Add changelog entry Signed-off-by: Jerry Yu --- ChangeLog.d/fix-parllel-cmake-build-fail.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ChangeLog.d/fix-parllel-cmake-build-fail.txt diff --git a/ChangeLog.d/fix-parllel-cmake-build-fail.txt b/ChangeLog.d/fix-parllel-cmake-build-fail.txt new file mode 100644 index 000000000..b892eb6f0 --- /dev/null +++ b/ChangeLog.d/fix-parllel-cmake-build-fail.txt @@ -0,0 +1,6 @@ +Bugfix + * Fix a build bug : when parallel out-of-box build with cmake, it raise file + not found error. That's due to same target is included in different sub- + makefiles. And cmake will call the targets in different forked `make` + process. As a result, the dependancy will be broken. This fix remove the + targets in sub-makefiles and create a global target for it.