Difference between revisions of "Heap-1-dot-c"

From Wiki at Neela Nurseries
Jump to: navigation, search
m
m
Line 12: Line 12:
  
 
Finished building: ../Source/FreeRTOS_Source/portable/MemMang/heap_1.c
 
Finished building: ../Source/FreeRTOS_Source/portable/MemMang/heap_1.c
 +
 +
 +
 +
== Invocations ==
 +
 +
Trying to invoke gcc to observe dependency rule output for one source file:
 +
 +
<pre>
 +
 +
## Note path is ~/projects/nxp/rtos-demo-3/Debug:
 +
 +
$ arm-none-eabi-gcc -MMD -MP -MF"Source/FreeRTOS_Source/portable/MemMang/heap_1.d" "../Source/FreeRTOS_Source/portable/MemMang/heap_1.c" -I"/home/veris/LPCXpresso/workspace/rtos-demo-3/Source/FreeRTOS_Source/include" -I"/home/veris/projects/nxp/rtos-demo-3/Source" -I"/home/veris/LPCXpresso/workspace/rtos-demo-3/Source/FreeRTOS_Source/portable/GCC/ARM_CM0"
 +
/tmp/ccc6sGOb.s: Assembler messages:
 +
/tmp/ccc6sGOb.s:118: Error: selected processor does not support ARM mode `cpsid i'
 +
 +
$
 +
</pre>
  
  

Revision as of 17:07, 9 July 2018


make -r all

Building file: ../Source/FreeRTOS_Source/portable/MemMang/heap_1.c

Invoking: MCU C Compiler

arm-none-eabi-gcc -D__REDLIB__ -DDEBUG -D__CODE_RED -D__USE_CMSIS=CMSISv2p00_LPC11xx -I"/home/veris/Downloads/freertos/FreeRTOSv10.0.1/FreeRTOS/Demo/CORTEX_M0_LPC1114_LPCXpresso/CMSISv2p00_LPC11xx/inc" -I"/home/veris/Downloads/freertos/tmp/FreeRTOSv10.0.1/FreeRTOS/Demo/CORTEX_M0_LPC1114_LPCXpresso/CMSISv2p00_LPC11xx/inc" -I"../../../Common/include" -I"/home/veris/projects/nxp/rtos-demo-3/Source/Common_Demo_Tasks/include" -I"/home/veris/projects/nxp/rtos-demo-3/Source" -I"/home/veris/projects/nxp/rtos-demo-3/Source/FreeRTOS_Source/include" -I"/home/veris/projects/nxp/rtos-demo-3/Source/FreeRTOS_Source/portable/GCC/ARM_CM0" -O0 -g3 -Wall -c -fmessage-length=0 -fno-builtin -ffunction-sections -fdata-sections -Wextra -mcpu=cortex-m0 -mthumb -D__REDLIB__ -specs=redlib.specs -MMD -MP -MF"Source/FreeRTOS_Source/portable/MemMang/heap_1.d" -MT"Source/FreeRTOS_Source/portable/MemMang/heap_1.o" -MT"Source/FreeRTOS_Source/portable/MemMang/heap_1.d" -o "Source/FreeRTOS_Source/portable/MemMang/heap_1.o" "../Source/FreeRTOS_Source/portable/MemMang/heap_1.c"

Finished building: ../Source/FreeRTOS_Source/portable/MemMang/heap_1.c


Invocations

Trying to invoke gcc to observe dependency rule output for one source file:


## Note path is ~/projects/nxp/rtos-demo-3/Debug:

$ arm-none-eabi-gcc -MMD -MP -MF"Source/FreeRTOS_Source/portable/MemMang/heap_1.d" "../Source/FreeRTOS_Source/portable/MemMang/heap_1.c" -I"/home/veris/LPCXpresso/workspace/rtos-demo-3/Source/FreeRTOS_Source/include" -I"/home/veris/projects/nxp/rtos-demo-3/Source" -I"/home/veris/LPCXpresso/workspace/rtos-demo-3/Source/FreeRTOS_Source/portable/GCC/ARM_CM0"
/tmp/ccc6sGOb.s: Assembler messages:
/tmp/ccc6sGOb.s:118: Error: selected processor does not support ARM mode `cpsid i'

$