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
But when LOCAL_SRCS contains files that are to be generated by some target in the user's makefile, we get sed piss off during configuration:
...
- [MANUAL] NO_CORE_MAIN_CPP set so core library will not include main.cpp
- [ASSUMED] MONITOR_BAUDRATE = 9600
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
sed: can't read Blink.c: No such file or directory
- [DEFAULT] OPTIMIZATION_LEVEL = s
...
Blink.c here is those C-file that was added manually to LOCAL_C_SRCS and is generated by user-defined target.
The text was updated successfully, but these errors were encountered:
ARDUINO_LIBS
variable is calculated during configuration and it usesLOCAL_SRCS
variable for this:Arduino-Makefile/Arduino.mk
Line 974 in 6f786a9
But when
LOCAL_SRCS
contains files that are to be generated by some target in the user's makefile, we getsed
piss off during configuration:Blink.c
here is those C-file that was added manually toLOCAL_C_SRCS
and is generated by user-defined target.The text was updated successfully, but these errors were encountered: