-
Notifications
You must be signed in to change notification settings - Fork 27
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
ASM_SOURCES not included in OBJECTS #150
Comments
I have the same issue. The startup script is not compiled and the generated elf file is basically empty. |
Thanks for opening up this issue! I am currently on it somehow this got through the whole pipeline without triggering errors. Just tested the fix and will try to resolve this ASAP. Will keep you posted |
fix: issue #150 capitalized .S introduced a bug, this should fix this
Just published the new release. Could everybody please checks that this resolves the issue? Also thanks for notifying me this quickly! |
It's working now. Thanks! |
Yes, it works. Thanks! FYI: The comment |
Great to hear that it is working. @Flo2410 Thanks for pointing out the double comment. For now I will fix this in an upcoming release. |
As mentioned by @has213, the ASM_SOURCES are no longer included in the OBJECTS after the last update with the fix for #143.
Adding
OBJECTS += $(addprefix $(BUILD_DIR)/,$(notdir $(ASM_SOURCES:.s=.o)))
fixed the issue.Originally posted by @has213 in #143 (comment)
The text was updated successfully, but these errors were encountered: