我正在练习信号,并且已经从gcc转到ubuntu上的日食,并且遇到了一些问题。下面的gcc代码可以很好地编译eclipse我得到错误
“错误:从类型'void(*)(int)'分配给类型'union'时,类型不兼容”

在网上查看,我看到由于使用C99之前版本的编译器而出错的可能性。所以我试图使eclipse编译为C99版本,并在下面的链接How do you configure GCC in Eclipse to use C99?中找到了

我试图按照SO链接中的建议进行更改,但目前我的其他人的标志上有一行,上面写着
“ -c -fmessage-length = 0”

如果我按行提示在该行编译器之前或之后添加-std = c99,则该编译器自身无法找到文件

我假设由于使用C99之前的版本的编译器而出现错误。如果我朝错误的方向追赶,并且它的正确性是将-std = c99添加到标记选项以使Eclipse使用C99的正确方法,请更正我

编辑:基于我更改sig_handler参数时的答案,我能够在不添加-std = c99标志的情况下进行编译,但是如建议的那样添加,则会遇到编译错误。下面是编译行

gcc -O0 -g3 -Wall -c -fmessage-length = 0 -std = c99 -MMD -MP -MF“

`odd_process.d" -MT"odd_process.d" -o "odd_process.o" "../odd_process.c`"
    ../odd_process.c: In function ‘main’:
    ../odd_process.c:13:2: error: unknown type name ‘sigset_t’
    ../odd_process.c:14:19: error: storage size of ‘sa’ isn’t know


ñ

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

void sighandler(int sig)
{
    printf("signal has been caught \n ");

}

int main(void)
{
    sigset_t block_signal, empty_signal;
    struct sigaction sa;

    pid_t childid;
    int i;

    sigemptyset(&sa.sa_mask);
    sa.sa_flags = 0;

   **/*for below line while running on eclipse I see error which says*/
   /***error: incompatible types when assigning to type ‘union <anonymous>’ from type ‘void (*)(int)’** */**

**sa.__sigaction_handler = sighandler;**

    stdbuf(stdout, NULL);

    if (sigaction(SIGCHLD, &sa, NULL) == -1)
    {
        printf("value not passed to signal handler \n ");
    }

    sigemptyset(&block_signal);
    sigaddset(&block_signal, SIGCHLD);

    if (sigprocmask(SIG_SETMASK, &block_signal, NULL) == -1)
    {
        printf("error occurred while setting signal mask \n");
    }

    childid = fork();

    printf("value of child id is -- %d ", childid);

    switch(childid)
    {
        case -1:
            printf("Error condition child creation did not happen properly \n");
            exit(-1);
        case 0:
            printf(" Child got created and will print odd number !!! ");
            sleep(5);
            exit(1);
        default:
            printf(" parent gets created !!! \n ");
            break;
    }

    sigemptyset(&empty_signal);
    sigsuspend(&empty_signal);
    printf(" parent will print  \n ");

    for(i = 0; i < 10; i++)
    {
        printf("%d ", i);
    }

    printf("\n");

    return EXIT_SUCCESS;
}

最佳答案

修改CFLAGS(打开所需的项目)。


点击菜单项project
点击下拉菜单项properties
点击左侧窗口中的C/C++Build标签-展开
单击展开的Settings中的C/C++Build选项卡
点击第二列中的GCC C Comiler标签-展开
单击第二列中的miscellaneous选项卡以选择第三列
选择“其他标志”行
输入其他标志,例如-std=gnu99
点击ok


每个项目可能需要这样做

关于c - 为posix的eclipse配置C99,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34960039/

10-08 22:31
查看更多