-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build failure #176 #179
Build failure #176 #179
Conversation
Link to PR in fork. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
this looks to have to do with the "dist" part of the "distcheck" target "distcheck" runs all the unit tests against an imputed source distribution? |
The 'distcheck' target effectively runs the following:
|
… in silabs_1.0 for BRD4316, BRD4317 and BRD4319 bootloaders Merge in WMN_TOOLS/matter from sdk_support_update_for_bootloaders to silabs_1.0 Squashed commit of the following: commit f6e15b585ab93911866f1bf7f1eb1d4671d85484 Author: Rehan Rasool <[email protected]> Date: Mon Oct 10 15:45:41 2022 -0400 Bump third_party/silabs/matter_support for BRD4316, BRD4317 and BRD4319 bootloaders
… in silabs_1.0 for BRD4316, BRD4317 and BRD4319 bootloaders Merge in WMN_TOOLS/matter from sdk_support_update_for_bootloaders to silabs_1.0 Squashed commit of the following: commit f6e15b585ab93911866f1bf7f1eb1d4671d85484 Author: Rehan Rasool <[email protected]> Date: Mon Oct 10 15:45:41 2022 -0400 Bump third_party/silabs/matter_support for BRD4316, BRD4317 and BRD4319 bootloaders
….0 for BRD4316, BRD4317 and BRD4319 bootloaders Merge in WMN_TOOLS/matter from sdk_support_update_for_bootloaders to silabs_1.0 Squashed commit of the following: commit f6e15b585ab93911866f1bf7f1eb1d4671d85484 Author: Rehan Rasool <[email protected]> Date: Mon Oct 10 15:45:41 2022 -0400 Bump third_party/silabs/matter_support for BRD4316, BRD4317 and BRD4319 bootloaders
… in silabs_1.0 for BRD4316, BRD4317 and BRD4319 bootloaders Merge in WMN_TOOLS/matter from sdk_support_update_for_bootloaders to silabs_1.0 Squashed commit of the following: commit f6e15b585ab93911866f1bf7f1eb1d4671d85484 Author: Rehan Rasool <[email protected]> Date: Mon Oct 10 15:45:41 2022 -0400 Bump third_party/silabs/matter_support for BRD4316, BRD4317 and BRD4319 bootloaders
Problem
Build failure #176
Build was failing as two new files weren't in the Makefile.am
However it was passing locally for me at my desk as I was using the following -
makefile -f Makefile-Standalone
to buildand
makefile -f <pathToFolder>tests/
to testThe former was passing as it wasn't simply building those files. And the latter was fine as the tests import the
.cpp
The GitHub build bot runs
./bootstrap && make -f Makefile-Standalone distcheck
and this was failing.This change fixes the broken build.
Output from my local run
Summary of Changes
Fix MakeFile.am
Fixes issue ##176