I'm using 4.9.9.2 and programming C, not C++.
I tried it: New project -> Introduction -> Hello World.
This one should be compiled, as it's code is ready. However, I get the same error.
I'll try to reinstall it.
Edit: Does it work with Windows Vista?
And also, I forgot to mention that the error occurs on the file "Makefile.win".
I opened it with notepad:
code:
# Project: Project1
# Makefile created by Dev-C++ 4.9.9.2
CPP = g++.exe
CC = gcc.exe
WINDRES = windres.exe
RES =
OBJ = main.o $(RES)
LINKOBJ = main.o $(RES)
LIBS = -L"C:/USP/Dev-Cpp/lib"
INCS = -I"C:/USP/Dev-Cpp/include"
CXXINCS = -I"C:/USP/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"C:/USP/Dev-Cpp/include/c++/3.4.2/backward" -I"C:/USP/Dev-Cpp/include/c++/3.4.2/mingw32" -I"C:/USP/Dev-Cpp/include/c++/3.4.2" -I"C:/USP/Dev-Cpp/include"
BIN = Project1.exe
CXXFLAGS = $(CXXINCS)
CFLAGS = $(INCS)
RM = rm -f
.PHONY: all all-before all-after clean clean-custom
all: all-before Project1.exe all-after
clean: clean-custom
${RM} $(OBJ) $(BIN)
$(BIN): $(OBJ)
$(CC) $(LINKOBJ) -o "Project1.exe" $(LIBS)
main.o: main.c
$(CC) -c main.c -o main.o $(CFLAGS)
C:/USP/Dev-Cpp/ is where I installed it.