我想使用getopt,但它只是没有工作。
它给了我
gcc -g -Wall -std=c99 -ftrapv -O2 -Werror -Wshadow -Wundef -save-temps -Werror-implicit-function-declaration -c -o src/main.o src/main.c
src/main.c: In function ‘main’:
src/main.c:13:2: error: implicit declaration of function ‘getopt’ [-Werror=implicit-function-declaration]
src/main.c:23:14: error: ‘optarg’ undeclared (first use in this function)
src/main.c:23:14: note: each undeclared identifier is reported only once for each function it appears in
src/main.c:26:9: error: ‘optopt’ undeclared (first use in this function)
src/main.c:28:5: error: implicit declaration of function ‘isprint’ [-Werror=implicit-function-declaration]
src/main.c:36:5: error: implicit declaration of function ‘abort’ [-Werror=implicit-function-declaration]
src/main.c:36:5: error: incompatible implicit declaration of built-in function ‘abort’ [-Werror]
src/main.c:43:15: error: ‘optind’ undeclared (first use in this function)
cc1: all warnings being treated as errors
make: *** [src/main.o] Error 1
如果你想看到这里的来源 (来自getopt手册页的几乎精确的copypasta)
#include <stdio.h>
#include <unistd.h> // getopt
#include "myfn.h"
int main(int argc, char *argv[])
{
int aflag = 0;
int bflag = 0;
char *cvalue = NULL;
int c;
while((c = getopt(argc, argv, "abc:")) != -1) {
switch(c) {
case 'a':
aflag = 1;
break;
case 'b':
bflag = 1;
break;
case 'c':
cvalue = optarg;
break;
case '?':
if (optopt == 'c')
fprintf (stderr, "Option -%c requires an argument.\n", optopt);
else if (isprint(optopt))
fprintf (stderr, "Unknown option `-%c'.\n", optopt);
else
fprintf (stderr, "Unknown option character `\\x%x'.\n", optopt);
return 1;
default:
abort ();
}
}
printf ("aflag = %d, bflag = %d, cvalue = %s\n", aflag, bflag, cvalue);
for (int i = optind; i < argc; i++) {
printf ("Non-option argument %s\n", argv[i]);
}
return 0;
}
任何想法我做错了什么?
我在Linux上,所以我认为它应该像这样工作。
答案 0 :(得分:34)
尝试删除-std=c99
。这可以防止在<features.h>
中定义POSIX宏,从而阻止<unistd.h>
包含<getopt.h>
。
或者自己包括getopt.h。
答案 1 :(得分:2)
你云不会删除-std=c99
。
相反,请在开头添加#define _POSIX_C_SOURCE 2
。
答案 2 :(得分:1)
在包含文件中添加#include <getopt.h>
。
答案 3 :(得分:1)
绝对不需要更改 -std
或直接包含 getopt.h
。
如果您想将 C99(或任何其他标准化)语言功能与 POSIX 函数(如 getopt
)一起使用,正确的做法是将 _POSIX_C_SOURCE
定义为正确的版本(例如, 200809L
) 之前包含相应的标题。有关详细信息,请参阅 feature_test_macros(7)。
答案 4 :(得分:-1)
我遇到了同样的问题,解决它的方法是您最有可能使用 -std=c99
进行编译,但是尝试使用 -std=gnu99
并且它应该可以工作。