-
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
chip-tool: DeviceScanner.cpp should be ifdef'd for Darwin #36783
chip-tool: DeviceScanner.cpp should be ifdef'd for Darwin #36783
Conversation
This is done in the header file but not in the .cpp. This PR fixes it.
PR #36783: Size comparison from 8606290 to e9f6c83 Full report (69 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
@@ -17,6 +17,7 @@ | |||
*/ | |||
|
|||
#include "DeviceScanner.h" | |||
#if CHIP_DEVICE_LAYER_TARGET_DARWIN |
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.
can this be a build rule thing instead to not include the cpp file for chip-tool for non-darwin?
I find that easier than a include all CPP files and then rely on ifdefs to have code or not
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 is already conditional in https://github.com/project-chip/connectedhomeip/blob/master/examples/chip-tool/BUILD.gn#L101
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.
Right, I missed this! I think I can get around that without this code change. I'll abandon this PR. Thanks!
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.
ifdef a cpp file based on compile comments seems like an undesirable pattern. We do use it in places by "include * and then rely on constants" typically because we alter generated code, however I would very much prefer not to do this. It is harder to follow "does this define exist" vs "does this file get compiled".
#if CHIP_DEVICE_LAYER_TARGET_DARWIN
is used in the header fileDeviceScanner.h
to exclude code from building for other targets but it's not used inDeviceScanner.cpp
. This causes build failures for non-Darwin targets because some types, such asDeviceScanner
are defined in the header and referred to in the .cpp file.This PR fixes it by enclosing the code in the cpp file between
CHIP_DEVICE_LAYER_TARGET_DARWIN
.