c - ARM Keil 错误 #17 预期为 "]"、C3910W : Old syntax

标签 c compiler-errors arm microcontroller keil

您好,我正在尝试在 Keil μVision v.5.12 上构建一个程序。

错误似乎只有“一个”(预计为 ])。但代码可以在我的 Linux 分区上运行(编译和运行时不会出现错误/警告)。

Rebuild target 'Target 1'
compiling ax.c...
ax.c: Warning: C3910W: Old syntax, please use '--c99'.
23_2\fixvector3d.h(30): warning:  #1-D: last line of file ends without a newline
  #endif
23_2\fixquat.h(73): warning:  #1-D: last line of file ends without a newline
  #endif
23_2\fixstring.h(21): warning:  #1-D: last line of file ends without a newline
  #endif
23_2\ax.c(46): error:  #17: expected a "]"
        mf16 Adew =  {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(47): error:  #17: expected a "]"
                     {[0 ... DIM-    1] = fix16_from_int(0)},            
23_2\ax.c(48): error:  #17: expected a "]"
                     {[0 ... DIM-    1] = fix16_from_int(0)}}};
23_2\ax.c(58): error:  #17: expected a "]"
        mf16 sqrtD = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(59): error:  #17: expected a "]"
                     {[0 ... DIM-    1] = fix16_from_int(0)},            
23_2\ax.c(60): error:  #17: expected a "]"
                     {[0 ... DIM-    1] = fix16_from_int(0)}}};
23_2\ax.c(64): error:  #17: expected a "]"
        mf16 transE = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(65): error:  #17: expected a "]"
                       {[0 ... DIM-    1] = fix16_from_int(0)},
23_2\ax.c(66): error:  #17: expected a "]"
                       {[0 ... DIM-    1] = fix16_from_int(0)}}};
23_2\ax.c(70): error:  #17: expected a "]"
        mf16 inv_eigenvectors = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(71): error:  #17: expected a "]"
                         {[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(72): error:  #17: expected a "]"
                        {[0 ... DIM-1] = fix16_from_int(0)}}};
23_2\ax.c(76): error:  #17: expected a "]"
        mf16 eigenvectors = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(77): error:  #17: expected a "]"
                     {[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(78): error:  #17: expected a "]"
                       {[0 ... DIM-1] = fix16_from_int(0)}}};
23_2\ax.c(82): error:  #17: expected a "]"
        mf16 whiteningMatrix = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(83): error:  #17: expected a "]"
                       {[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(84): error:  #17: expected a "]"
                   {[0 ... DIM-1] = fix16_from_int(0)}}};
23_2\ax.c(88): error:  #17: expected a "]"
        mf16 dewhiteningMatrix = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(89): error:  #17: expected a "]"
                       {[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(90): error:  #17: expected a "]"
                      {[0 ... DIM-1] = fix16_from_int(0)}}};
23_2\ax.c(94): error:  #17: expected a "]"
        mf16 Bold = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(95): error:  #17: expected a "]"
                      {[0 ... DIM-    1] = fix16_from_int(0)},
23_2\ax.c(96): error:  #17: expected a "]"
                       {[0 ... DIM-    1] = fix16_from_int(0)}}};
23_2\ax.c(100): error:  #17: expected a "]"
        mf16 tempMatrixOne = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(101): error:  #17: expected a "]"
                           {[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(102): error:  #17: expected a "]"
                   {[0 ... DIM-1] = fix16_from_int(0)}}};
23_2\ax.c(106): error:  #17: expected a "]"
        mf16 tempMatrixTwo = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(107): error:  #17: expected a "]"
                         {[0 ... DIM-1] = fix16_from_int(0)},
23_2\ax.c(108): error:  #17: expected a "]"
                   {[0 ... DIM-1] = fix16_from_int(0)}}};
assembling startup_ARMCM0.s...
compiling system_ARMCM0.c...
system_ARMCM0.c: Warning: C3910W: Old syntax, please use '--c99'.
".\Objects\ax.axf" - 30 Error(s), 5 Warning(s).

** 我的代码中出现错误的部分

mf16 Adew =  {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
                            {[0 ... DIM-1] = fix16_from_int(0)},        
                            {[0 ... DIM-1] = fix16_from_int(0)}}};
mf16 *ptr_Adew;     
ptr_Adew = &Adew;

mf16 identity = {DIM, DIM, 0, {{fix16_from_int(1),fix16_from_int(0),fix16_from_int(0)},
                               {fix16_from_int(0),fix16_from_int(1),fix16_from_int(0)},
                               {fix16_from_int(0),fix16_from_int(0),fix16_from_int(1)}}};
mf16 *ptr_identity;     
ptr_identity = &identity;

mf16 sqrtD = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
                            {[0 ... DIM-1] = fix16_from_int(0)},        
                            {[0 ... DIM-1] = fix16_from_int(0)}}};
mf16 *ptr_sqrtD;        
ptr_sqrtD = &sqrtD;

mf16 transE = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
                            {[0 ... DIM-1] = fix16_from_int(0)},
                            {[0 ... DIM-1] = fix16_from_int(0)}}};
mf16 *ptr_transE;
ptr_transE = &transE;

mf16 inv_eigenvectors = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
                                       {[0 ... DIM-1] = fix16_from_int(0)},
                                       {[0 ... DIM-1] = fix16_from_int(0)}}};
mf16 *ptr_inv_eigenvectors;         
ptr_inv_eigenvectors = &inv_eigenvectors;   

mf16 eigenvectors = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
                                   {[0 ... DIM-1] = fix16_from_int(0)},
                                   {[0 ... DIM-1] = fix16_from_int(0)}}};
mf16 *ptr_eigenvectors;                             
ptr_eigenvectors = &eigenvectors;                           

mf16 whiteningMatrix = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
                                      {[0 ... DIM-1] = fix16_from_int(0)},
                                      {[0 ... DIM-1] = fix16_from_int(0)}}};
mf16 *ptr_whiteningMatrix;
ptr_whiteningMatrix = &whiteningMatrix;

mf16 dewhiteningMatrix = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
                                        {[0 ... DIM-1] = fix16_from_int(0)},
                                        {[0 ... DIM-1] = fix16_from_int(0)}}};
mf16 *ptr_dewhiteningMatrix;
ptr_dewhiteningMatrix = &dewhiteningMatrix;

mf16 Bold = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
                            {[0 ... DIM-1] = fix16_from_int(0)},
                            {[0 ... DIM-1] = fix16_from_int(0)}}};
mf16 *ptr_Bold;
ptr_Bold = &Bold;

mf16 tempMatrixOne = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
                                    {[0 ... DIM-1] = fix16_from_int(0)},
                                    {[0 ... DIM-1] = fix16_from_int(0)}}};
mf16 *ptr_tempMatrixOne;
ptr_tempMatrixOne = &tempMatrixOne;

mf16 tempMatrixTwo = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
                                    {[0 ... DIM-1] = fix16_from_int(0)},
                                    {[0 ... DIM-1] = fix16_from_int(0)}}};
mf16 *ptr_tempMatrixTwo;
ptr_tempMatrixTwo = &tempMatrixTwo;

mf16 Btranspose = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
                                {[0 ... DIM-1] = fix16_from_int(0)},
                                {[0 ... DIM-1] = fix16_from_int(0)}}};
mf16 *ptr_Btranspose;
ptr_Btranspose = &Btranspose;

mf16 Bnew = {DIM, DIM, 0, {{[0 ... DIM-1] = fix16_from_int(0)},
                            {[0 ... DIM-1] = fix16_from_int(0)},
                            {[0 ... DIM-1] = fix16_from_int(0)}}};
mf16 *ptr_Bnew;
ptr_Bnew = &Bnew;

enter image description here 我做错了什么? (我是否忘记了设置我的 keil 项目的任何内容?也许是 .h?或者是 [0 ... 维度] 声明了我的矩阵?)

最佳答案

interjay将其放在注释中,您正在使用特定于 gcc 的 C 扩展,并且在 Keil 上不兼容。

来自gcc documentation :

To initialize a range of elements to the same value, write ‘[first ... last] = value’. This is a GNU extension. For example,

int widths[] = { [0 ... 9] = 1, [10 ... 99] = 2, [100] = 3 };

关于c - ARM Keil 错误 #17 预期为 "]"、C3910W : Old syntax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28700750/

相关文章:

c - 写入/dev/mem 失败,地址错误

c++ - 什么寄存器指向堆?

c - 我怎样才能将这个快速排序代码更改为我想要的3个不同部分?

c - 如何使用宽字符到多字节删除字符串字符之间的空格?

android + 谷歌地图 API v2

actionscript-3 - 我正在获取ArgumentError : Error #2025:

compiler-errors - OrangePi Armbian ogles_gpgpu

c - 使用 asan 和 strsep() 未检测到的泄漏

c - 数据类型大小是否因计算机而异?

android - 将 ARM NEON 代码移植到 AARCH64,很多问题