-
Notifications
You must be signed in to change notification settings - Fork 285
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
Embedded assembly issues:my .S file been deleted #486
Comments
Hi, I'm not able to replicate this. Can you post your makefile? |
OK, most of it is templated; I only changed the file names. To compile for the STM32F1 platform, I added "LDFLAGS += -specs=nosys.specs". When I compile using a Makefile without this statement for the STM32F4 platform, I encounter the same issues mentioned above. |
Hello, This line in This should use the case-sensitive Do you have the same name of a c file? e.g You could try commenting out the Line 552 of Makefile.inc and see if that fixes it. I suspect if not that there is somewhere it's missing the case sensitivity. Unfortunately that is a bit of a "known issue" on Windows sometimes (I remember this from avr-gcc/WinAVR a long time ago, but forget the specifics now). You could also try putting your |
Thank you for the response!
|
Embedded assembly issues. I used some functions defined in assembly language (.S files) in my .c program, and placed them in the same directory as sampleserial-xxx , also adding them correctly to the makefile. However, when I compile using the acquisition script, these .S files are not compiled into .o files, and when I return to the original directory, I find that my .S files have been deleted. Why is this happening? How can I solve it? I am using the default makefile rules file Makefile.inc from ChipWhisperer.
The text was updated successfully, but these errors were encountered: