You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a somewhat larger project) and am in the process of porting from AVR to STM32
Not sure if this is sloeber or toolchain related ??
sloeber 4.4.2 on windows
build runs through fine, only after the archiver step it fails with a strange message
it seems it is looking for a file named .corecorestm32usbhidusbd_hid_composite.c.o which resembles a lot the first file with path .\core\core\stm32\usb\hid\usbd_hid_composite.c.o
maybe this is a slash/backslash - problem?
The text was updated successfully, but these errors were encountered:
The command line is simply wrong.
I'm not sure how you created/modified the project but this does not look like "default Sloeber behavior"
Let me explain why:
When Sloeber starts the build process it starts it in the build folder (here C:\sloeber_fs-Test\TestHead_STM32\Release).
So all files must be referenced as FQN from there or as relative paths "as they are on the file system" (not like Sloeber represents them as the Eclipse linking is not available on the OS).
So when the command specifies .\core\core\stm32\usb\hid\usbd_hid_composite.c.o the archiver will look for
C:\sloeber_fs-Test\TestHead_STM32\Release\core\core\stm32\usb\hid\usbd_hid_composite.c.o
Which should not exists in a Sloeber install.
I just realized I made a mistake. Indeed the command seems fine.
The command is 10820 long though so it may be a command to long thing
Can you experiment on the command line to see how it behaves there (making it shorter and so on)
I have a somewhat larger project) and am in the process of porting from AVR to STM32
Not sure if this is sloeber or toolchain related ??
sloeber 4.4.2 on windows
build runs through fine, only after the archiver step it fails with a strange message
it seems it is looking for a file named
.corecorestm32usbhidusbd_hid_composite.c.o
which resembles a lot the first file with path.\core\core\stm32\usb\hid\usbd_hid_composite.c.o
maybe this is a slash/backslash - problem?
The text was updated successfully, but these errors were encountered: