What does this mean?
make: *** [utilities/fsl_debug_console.o] Error 1
make: *** Waiting for unfinished jobs....
By the way, I am not using fsl_debug_console.
How do I correct this?
Thanks,
Neil Porven
Solved! Go to Solution.
Hi Neil,
your screenshot shows the problem: you only have one double quote:
Add another one at the beginning or remove the one at the end, and things should work?
I hope this helps,
Erich
Hi Neil,
your screenshot shows the problem: you only have one double quote:
Add another one at the beginning or remove the one at the end, and things should work?
I hope this helps,
Erich
Hi,
I am facing the below error
13:57:33 **** Build of configuration Debug for project LPC55S06_Project_Sunjay_Test_02 ****
make -r -j8 all
Building file: ../utilities/fsl_debug_console.c
make[1]: *** [utilities/subdir.mk:22: utilities/fsl_str.o] Error 141
"make -r -j8 all" terminated with exit code 2. Build might be incomplete.
13:57:33 Build Failed. 1 errors, 0 warnings. (took 86ms)
How to remove this error.
Regards
Sanjay
I recommend that you provide more information first: without the full picture, it is really hard to tell.
Other than that: make a clean, and check the make file/console output.
Good catch Erich!
Hello Neil
By default, the ‘fsl_debug_console’ is under ‘Utilities’ subfolder. Does it exist in your project view?
There should be some other message displaying before the one you attached, which show the real error cause. Could you please also paste it?
If it is due to no head file, please check the settings in <Include Path> from Project Properties.
Best Regards
Fiona Kuang
TIC - Technical Information Center
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Mark Correct button. Thank you!
-----------------------------------------------------------------------------------------------------------------------
Hi Xin,
This is the full console message:
12:43:35 **** Incremental Build of configuration Debug for project SDcard_Fat0.11a_b00 ****
make -j2 all
'Building file: ../utilities/fsl_debug_console.c'
'Building file: ../startup/system_MK64F12.c'
'Invoking: Cross ARM C Compiler'
arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -O0 -fmessage-length=0 -fsigned-char -ffunction-sections -fdata-sections -Wall -g3 -D"CPU_MK64FX512VDC12" -I../startup -I../sdmmc_2.0.0/src" -I../fatfs_0.11a/src -I../board -I../utilities -I../CMSIS -I../drivers -std=gnu99 -MMD -MP -MF"utilities/fsl_debug_console.d" -MT"utilities/fsl_debug_console.o" -c -o "utilities/fsl_debug_console.o" "../utilities/fsl_debug_console.c"
'Invoking: Cross ARM C Compiler'
arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -O0 -fmessage-length=0 -fsigned-char -ffunction-sections -fdata-sections -Wall -g3 -D"CPU_MK64FX512VDC12" -I../startup -I../sdmmc_2.0.0/src" -I../fatfs_0.11a/src -I../board -I../utilities -I../CMSIS -I../drivers -std=gnu99 -MMD -MP -MF"startup/system_MK64F12.d" -MT"startup/system_MK64F12.o" -c -o "startup/system_MK64F12.o" "../startup/system_MK64F12.c"
arm-none-eabi-gcc: fatal error: no input files
compilation terminated.
arm-none-eabi-gcc: fatal error: no input files
compilation terminated.
make: *** [startup/system_MK64F12.o] Error 1
make: *** Waiting for unfinished jobs....
make: *** [utilities/fsl_debug_console.o] Error 1
12:43:36 Build Finished (took 804ms)
This is the include path:
Hopefully, you can find what's causing the errors.
Thank you,
Neil Porven
Sorry,
Here is the Project View:
Neil Porven