我正在尝试从 VIM 切换到 Emacs,但我无法让语法检查器为小型 C 项目工作。我已经尝试将 Flymake 和 Flycheck 作为语法检查器,并且都显示不存在的编译器错误。我目前有 3 个文件,poker.c
cards.c
并且cards.h
.
这是扑克.c
#include "cards.h"
#include <stdio.h>
#include <stdlib.h>
int main()
{
struct Deck *deck = malloc(sizeof(struct Deck));
struct Hand *hand = malloc(sizeof(struct Hand));
clear_deck(deck);
deck = init_deck(deck);
deck = shuffle(deck);
int c = deal(deck, hand);
if(c != 5) {
printf("error: not enough cards delt");
} else {
print_hand(hand);
}
return 0;
}
这是cards.h
typedef enum {
TWO,
THREE,
FOUR,
FIVE,
SIX,
SEVEN,
EIGHT,
NINE,
TEN,
JACK,
QUEEN,
KING,
ACE,
} Rank;
typedef enum {
SPADES,
CLUBS,
HEARTS,
DIAMONDS,
} Suit;
struct Card {
Rank rank;
Suit suit;
int shuffled;
};
struct Deck {
struct Card cards[52];
int shuffled;
};
struct Hand{
struct Card cards[5];
};
void * shuffle(struct Deck *deck);
void * init_deck(struct Deck *d);
void clear_deck(struct Deck *d);
void print_deck(struct Deck *d);
void print_hand(struct Hand *h);
int deal(struct Deck *deck, struct Hand *hand);
两个语法检查器都显示该行的错误
struct Hand *hand = malloc(sizeof(struct Hand));
以及所有其他功能的警告。这是*Flycheck errors*
缓冲区
9 37 error invalid application of ‘sizeof’ to incomplete type ‘struct Hand’... (c/c++-gcc)
10 4 warning implicit declaration of function ‘clear_deck’... (c/c++-gcc)
11 3 warning implicit declaration of function ‘init_deck’... (c/c++-gcc)
11 8 warning assignment makes pointer from integer without a cast... (c/c++-gcc)
12 3 warning implicit declaration of function ‘shuffle’... (c/c++-gcc)
12 8 warning assignment makes pointer from integer without a cast... (c/c++-gcc)
13 3 warning implicit declaration of function ‘deal’... (c/c++-gcc)
17 5 warning implicit declaration of function ‘print_hand’... (c/c++-gcc)
我觉得 emacs 在进行语法检查之前没有运行 C 预处理器。我可以做些什么来使语法检查器正常工作吗?