You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using Matter as module in standalone Zephyr, the build configuration fails with the following error:
ERROR at build arg file (use "gn args <out_dir>" to edit):4:25: Build argument has no effect.
chip_build_pw_rpc_lib = false
^----
Did you mean "chip_build_pw_trace_lib"?
The variable "chip_build_pw_rpc_lib" was set as a build argument
but never appeared in a declare_args() block in any buildfile.
When looking into the config/zephyr/chip-gn/BUILD.gn file, the chip_build_pw_rpc_lib = false argument is not declared.
One way we could resolve this is by enabling PW RPC the same way nrfconnect does it currently.
The text was updated successfully, but these errors were encountered:
Reproduction steps
Pull the connectedhomeip repo. I used
west.yml
to do this, to place it into<zephyr-workspace>/modules/lib/matter
similar to how nrfconnect does thisAdd matter as extra Zephyr module in your CMakeLists.txt
Enable the KConfig option
Run
source <path_to_connectedhomeip>/scripts/activate.sh
and build your projectBug prevalence
Whenever i do this
GitHub hash of the SDK that was being used
8f66f42
Platform
other
Platform Version(s)
Zephyr 3.3.0
Anything else?
When using Matter as module in standalone Zephyr, the build configuration fails with the following error:
When looking into the
config/zephyr/chip-gn/BUILD.gn
file, thechip_build_pw_rpc_lib = false
argument is not declared.One way we could resolve this is by enabling PW RPC the same way nrfconnect does it currently.
The text was updated successfully, but these errors were encountered: