我正在尝试使用cygwin在Windows机器上编译程序,并且我遇到此错误
cannot find -lgcc_eh
似乎缺少相关性或标志问题,这是Makefile
CC = gcc
STRIP = strip -s --remove-section=.note --remove-section=.comment
TARGET = resource_tool
HEADERS = resource_tool.h common.h
SOURCES = resource_tool.c common.c
OBJS = $(SOURCES:.c=.o)
CFLAGS = -fshort-wchar -m32 -ffunction-sections -Os
LDFLAGS = -Wl,--gc-sections -static
SOURCES += tests.c
HEADERS += tests.h
%.o: %.c $(HEADERS) Makefile
$(CC) -c -o $@ $< $(CFLAGS)
$(TARGET): $(OBJS)
$(CC) -o $@ $(OBJS) $(CFLAGS) $(LDFLAGS) $(LIBS)
$(STRIP) $@
我已经做了一些研究,但是找不到任何有帮助的东西