What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » [Solved] Error on Dev-C++

[Solved] Error on Dev-C++
Author: Message:
Chancer
Senior Member
****

Avatar

Posts: 648
Reputation: 7
34 / Male / Flag
Joined: May 2005
Status: Away
O.P. RE: Error on Dev-C++
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.

This post was edited on 02-29-2008 at 05:53 PM by Chancer.
02-29-2008 05:44 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[Solved] Error on Dev-C++ - by Chancer on 02-29-2008 at 12:09 AM
RE: Error on Dev-C++ - by Naruto-SR on 02-29-2008 at 12:34 AM
RE: Error on Dev-C++ - by Chancer on 02-29-2008 at 05:44 PM
RE: Error on Dev-C++ - by Chancer on 03-02-2008 at 07:12 PM
RE: Error on Dev-C++ - by Mike on 03-02-2008 at 08:13 PM
RE: Error on Dev-C++ - by Chancer on 03-02-2008 at 11:40 PM
RE: Error on Dev-C++ - by vikke on 03-02-2008 at 11:53 PM
RE: Error on Dev-C++ - by Chancer on 03-02-2008 at 11:56 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On