-
Notifications
You must be signed in to change notification settings - Fork 133
Refactor Makefiles to allow overriding library paths #596
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
Conversation
dgarske
left a comment
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.
FYI: Build output changes to absolute paths in logs. Not critical, but is a bit verbose now.
[CC ARM] lib/wolfssl/wolfcrypt/src/port/arm/armv8-aes.o
[CC ARM] lib/wolfssl/wolfcrypt/src/port/arm/armv8-chacha.o
[CC ARM] lib/wolfssl/wolfcrypt/src/port/arm/armv8-sha256.o
[CC ARM] lib/wolfssl/wolfcrypt/src/port/arm/armv8-sha512.o
[CC ARM] /home/davidgarske/GitHub/wolfboot/lib/wolfssl/wolfcrypt/src/port/arm/armv8-aes.o
[CC ARM] /home/davidgarske/GitHub/wolfboot/lib/wolfssl/wolfcrypt/src/port/arm/armv8-chacha.o
[CC ARM] /home/davidgarske/GitHub/wolfboot/lib/wolfssl/wolfcrypt/src/port/arm/armv8-sha256.o
[CC ARM] /home/davidgarske/GitHub/wolfboot/lib/wolfssl/wolfcrypt/src/port/arm/armv8-sha512.o
danielinux
left a comment
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.
Remove excessive warnings from docs/compile.md. Submodule tracking is still the preferred mechanism to link dependencies, and each release is tracked (and tested) against one specific commit of each repository.
|
Merged, thanks! |
Allows for the user to build wolfBoot against a different version of internal library dependencies (
wolfHSM,wolfTPM, etc) if they want to live dangerously.Also adds a CI action to ensure basic configurations for each library still build when using external paths.
The default behavior remains the same (points to
lib/*)