Compare commits

...

2 Commits

Author SHA1 Message Date
Nakidai 3ce869657a
Remove MinGW, because it can't compile project now 2024-03-07 00:12:16 +03:00
Nakidai 0168c89155
Add flag about c standard 2024-03-07 00:12:13 +03:00
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ $(OBJDIR)/platform:
mkdir -p $(OBJDIR)/platform mkdir -p $(OBJDIR)/platform
$(OBJDIR)/%.o: $(SRCDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.c
$(CC) -c -o $@ $< $(CFLAGS) $(DEFCFLAGS) $(INCLUDE) $(CC) -c -std=c11 -o $@ $< $(CFLAGS) $(DEFCFLAGS) $(INCLUDE)
$(OUT): $(OBJDIR)/platform $(OBJ) $(OUT): $(OBJDIR)/platform $(OBJ)
$(CC) -o $@ $(OBJ) $(LDFLAGS) $(DEFLDFLAGS) $(CC) -o $@ $(OBJ) $(LDFLAGS) $(DEFLDFLAGS)

View File

@ -10,7 +10,7 @@ Supported platforms
-- --
Was tested on: Was tested on:
- FreeBSD 13.2 - FreeBSD 13.2
- Windows 11 (both MinGW and MSVC) - Windows 11 (MSVC)
- Linux 6.5.8 (glibc 2.38-7) - Linux 6.5.8 (glibc 2.38-7)
Building Building