Conversation
|
Hi @mthielvoldt . Thank you for reporting this! I'm evaluating the fix. I believe it's time for us to automate CMake build tests. |
|
Hi @danielinux. Do let me know if I can assist. I don't currently have a specific commercial product in mind for wolfBoot, but I read your book "Embedded Systems Architecture" and my interest was piqued, so I thought I would explore. Is automating CMake build tests for wolfBoot something you'd be interested in having some community help with? |
|
Thanks (also for reading my book!). I already have a local branch with the added workflow. I'll keep you posted on this as I'm currently busy with some higher priority items. |
|
Thanks @mthielvoldt for reporting those build failures. I've updated the CMake build to address these issues, and added github workflows for this. I'm now closing this in favor of #561 |
New user here. 👋 Thanks for this valuable tool!
Following the README, using cmake, I ran (starting in the wolfBoot root dir)
The cmake (config) step succeeds, but on the
make(build) step, I see the following errors:[... Total of 26 of the same error ...]
The first commit in this PR addresses these errors.
After applying that fix, repeating the same command sequence from a clean build dir, I see these linker errors, again on the
makestep:So I went through finding where these missing functions are defined, and added those 5 files to the WOLFBOOT_KEYTOOL_SRCS list. (the second commit).
With this second fix also applied, the build succeeds with the following output:
Hope this helps.