examples/hello_dts $ bazelisk build :app --platforms=:robokit1
Some of the files under the generated/
directory are currently not generated by Bazel. To generate them use the same SHA of Zephyr as the one in the MODULE.bazel and run west build -p -b robokit1 samples/cpp/hello_world
. All the generated files will be under the build/
directory. When you copy the autoconf.h
file, you need to append the following line to that file:
#define CONFIG_PIGWEED_SYS_IO_INIT_PRIORITY 1
Using a build log we can scan to see which files were generated using:
grep -oP '\-o [\w_\-+/\.]+\.o(bj)?' ${log_file} | sort -u