c - GCC错误结构灵活数组成员没有命名成员

标签 c gcc compiler-errors

opts.h:

#ifndef PINF_OPTS_H
#define PINF_OPTS_H
#endif //PINF_OPTS_H

// == DEFINE ==
#define MAX_OPTS 100

// == VAR ==
struct _opt {
    char *option; // e.g. --group
    char *alias; // e.g. -G
    int reqArg; // Require Argument | 0: No 1: Yes
    int maxArgs; // -1: Undefined/ Unlimited
    int func; /* Run Function? 0: No 1: Yes
               * If No, it can be checked with function 'isOptEnabled'
               */
} opt;

struct _optL {
    struct opt avOpt[MAX_OPTS];
} optL;

struct _acOpt {
    struct opt *acOpt[MAX_OPTS];
} acOpt;

// == FUNC ==
void initOpts(void);

opts.c:

#include "opts.h"

#include <stdio.h>
#include <stdlib.h>

// == VAR ==
static struct optL *optList;
static struct acOpt *activeOpts;

// == CODE ==
void initOpt(void) {
    optList = (struct optL *)malloc(sizeof(struct optL *));
    activeOpts = (struct acOpt *)malloc(sizeof(struct acOpt *));
}

opts_test.c:

#include <stdio.h>
#include "../include/opts.h"

int main(void) {
    initOpts();
    return 0;
}

我编译它:

gcc -c include/opts.c && gcc -c opts_test.c && gcc -o opts_test opts_test.o opts.o; rm -f *.o;

输出:

In file included from include/opts.c:5:0:    
include/opts.h:14:16: error: array type has incomplete element type ‘struct opt’     
     struct opt avOpt[];     
                ^~~~~       
include/opts.h:28:17: error: flexible array member in a struct with no named members     
     struct opt *acOpt[];      
                 ^~~~~       

为什么 gcc 不编译我的文件?
在另一个项目中,我完全使用了这段代码并且它有效。
现在它不起作用......

最佳答案

看起来您正在声明一个结构,然后尝试给它另一个名称。尝试使用 typedef,然后使用不带“struct”的新名称。像这样的东西。

此外,您分配的内存大小是指向结构的指针的大小,而不是结构的大小。

// == VAR ==
typedef struct _opt {
    char *option; // e.g. --group
    char *alias; // e.g. -G
    int reqArg; // Require Argument | 0: No 1: Yes
    int maxArgs; // -1: Undefined/ Unlimited
    int func; /* Run Function? 0: No 1: Yes
               * If No, it can be checked with function 'isOptEnabled'
               */
} opt_t;


typedef struct _optL {
   opt_t avOpt[MAX_OPTS];
} optL_t;

关于c - GCC错误结构灵活数组成员没有命名成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47757400/

相关文章:

c - 如何将矩阵应用于opencv中的图像?

c - 静态库与静态库的链接

c++ - 如何在 Android NDK GCC 上使用 AddressSanitizer?

haskell - 如何更改 GHC 编译器错误消息的打印方式?

syntax - YACC和LEX,在行尾出现语法错误,无法弄清原因

c++ - 转换为多维std::array [duplicate]

c - 如何以数组形式获取二叉树的全部内容?

可以使用单个 C 函数序列化 N 维数组吗?

c++ - 将 0 个参数传递给可变参数宏在 GCC 中失败,但仅在 C++ 中?

optimization - 如何弄清楚 -O<num> 选项在 gcc 中的作用?