Hey I compiled a TensorFlow Lite project in Mbed-CLI and that worked. Now I want to use Mbed Studio but at 99% of compiling I get the following errors:
Compile [ 98.8%]: arm_bitreversal2.S
[ERROR] “.\tensorflow\lite\experimental\micro\tools\make\downloads\cmsis\CMSIS\DSP\Source\TransformFunctions\arm_bitreversal2.S”, line 65 (column 5): Error: A1137E: Unexpected characters at end of line
65 00000000 .syntax unified
^
“.\tensorflow\lite\experimental\micro\tools\make\downloads\cmsis\CMSIS\DSP\Source\TransformFunctions\arm_bitreversal2.S”, line 68 (column 2): Error: A1137E: Unexpected characters at end of line
68 00000000 .section .text
^
“.\tensorflow\lite\experimental\micro\tools\make\downloads\cmsis\CMSIS\DSP\Source\TransformFunctions\arm_bitreversal2.S”, line 69 (column 2): Error: A1137E: Unexpected characters at end of line
69 00000000 .thumb
^
“.\tensorflow\lite\experimental\micro\tools\make\downloads\cmsis\CMSIS\DSP\Source\TransformFunctions\arm_bitreversal2.S”, line 78 (column 2): Error: A1137E: Unexpected characters at end of line
78 00000000 .global arm_bitreversal_32
^
“.\tensorflow\lite\experimental\micro\tools\make\downloads\cmsis\CMSIS\DSP\Source\TransformFunctions\arm_bitreversal2.S”, line 79 (column 2): Error: A1137E: Unexpected characters at end of line
79 00000000 .global arm_bitreversal_16
^
“.\tensorflow\lite\experimental\micro\tools\make\downloads\cmsis\CMSIS\DSP\Source\TransformFunctions\arm_bitreversal2.S”, line 86 (column 2): Error: A1137E: Unexpected characters at end of line
86 00000000 .type arm_bitreversal_16, %function
^
“.\tensorflow\lite\experimental\micro\tools\make\downloads\cmsis\CMSIS\DSP\Source\TransformFunctions\arm_bitreversal2.S”, line 87 (column 2): Error: A1137E: Unexpected characters at end of line
87 00000000 .type arm_bitreversal_32, %function
^
“.\tensorflow\lite\experimental\micro\tools\make\downloads\cmsis\CMSIS\DSP\Source\TransformFunctions\arm_bitreversal2.S”, line 142: Fatal error: A1355U: A Label was found which was in no AREA
142 00000000 arm_bitreversal_32 :
8 Errors, 0 Warnings
I found that at Mbed-CLI the GCC_ARM compiler was used and at Mbed Studio this one can not be used, so ARMC6 is used.
Can anyone help me?
Thanks