I am Following a tutorial on making games with C++ from Llamaworks 2d engine
which uses Opengl. My Dev cpp version is verions 4.9.9.2. I guess I installed
all the prerequisites and the headers and plug-ins correctly. But stiil I get
this on the Compile Log:-
1.Compiler:Defaultcompiler2.BuildingMakefile:"C:\Users\Prabhath\Documents\Academic\Dev C++ projects\SimpleGame\Makefile.win"3.Findingdependenciesforfile:C:\Users\Prabhath\Documents\Academic\DevC++projects\SimpleGame\LW2DAnimatedSprite.cpp4.Findingdependenciesforfile:C:\Users\Prabhath\Documents\Academic\DevC++projects\SimpleGame\LW2DAnimation.cpp...13.Findingdependenciesforfile:C:\Users\Prabhath\Documents\Academic\DevC++projects\SimpleGame\StationaryBall.cpp14.Executingmake...15.make.exe-f"C:\Users\Prabhath\Documents\Academic\Dev C++ projects\SimpleGame\Makefile.win"all16.g++.exe-D__DEBUG__-cLW2DAnimatedSprite.cpp-oLW2DAnimatedSprite.o-I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include"-I"C:/Dev-Cpp/include/c++/3.4.2/mingw32"-I"C:/Dev-Cpp/include/c++/3.4.2"-I"C:/Dev-Cpp/include"-I"C:/Dev-Cpp/OpenAL-0.099-mingw/include"-I"C:/Dev-Cpp/LlamaWorks2D"-ansi-traditional-cpp-g317.g++.exe-D__DEBUG__-cLW2DAnimation.cpp-oLW2DAnimation.o-I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include"-I"C:/Dev-Cpp/include/c++/3.4.2/mingw32"-I"C:/Dev-Cpp/include/c++/3.4.2"-I"C:/Dev-Cpp/include"-I"C:/Dev-Cpp/OpenAL-0.099-mingw/include"-I"C:/Dev-Cpp/LlamaWorks2D"-ansi-traditional-cpp-g3...28.g++.exe-D__DEBUG__LW2DAnimatedSprite.oLW2DAnimation.oLW2DApp.oLW2DBMPFile.oLW2DError.oLW2DGame.oLW2DLevel.oLW2DSound.oLW2DSprite.oLW2DTexture.oStationaryBall.o-o"Simplegame.exe"-L"C:/Dev-Cpp/lib"C:/Dev-Cpp/lib/libopengl32.a-mwindows../../../../../../Dev-Cpp/lib/ALut.a../../../../../../Dev-Cpp/lib/libOpenAL32.a../../../../../../Dev-Cpp/lib/ALu.a../../../../../../Dev-Cpp/lib/ALc.a../../../../../../Dev-Cpp/lib/libwinmm.a../../../../../../Dev-Cpp/lib/libopengl32.a-g329.Executionterminated30.Compilationsuccessful
The code should build up a simple window where a ball should bounce around.
But no window appears
I've searched throughout the internet for possible solutions. Some say to
change the IDE from DevC++ to something else. But that's easier said than done
for a newbie like me coz of the setting up details. I need a definite solution
and what causes this. Please help!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
i recently downloaded the same version and compiled/linked/ran the bouncing
ball program right at the start (i think its an example project). i'm new to
dev-c++ but not new to programming. line 30 says compilation successful which
leads me to believe that an attempt link was never performed. try the
compile/link/run process. if that's barking up the wrong tree, search for the
directory where the exe is dropped. Is the executable there? can you run it
manually? if so, look for dev-c+ config or project directories to tell the ide
where to find the exe. make sure you link the project.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
i just got dev-c++ for another pc of mine and i have the same problem on that
pc. the exe is dropped in the directory i expected and it runs fine when i
start it manually..but the ide / dev-c++ says the project was never compiled
presumably because it doesn't know where the exe is or can't find it. i
updated the 'directories' to tell the ide where to find the exe but nothing
has resolved the problem YET. i'll continue to work this and let u know what
it find out. again.. you can run the exe yourself manually if you know where
the compiler dropped it (default is usually the directory where the *.dev
project file is or the source files are).
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am Following a tutorial on making games with C++ from Llamaworks 2d engine
which uses Opengl. My Dev cpp version is verions 4.9.9.2. I guess I installed
all the prerequisites and the headers and plug-ins correctly. But stiil I get
this on the Compile Log:-
The code should build up a simple window where a ball should bounce around.
But no window appears
I've searched throughout the internet for possible solutions. Some say to
change the IDE from DevC++ to something else. But that's easier said than done
for a newbie like me coz of the setting up details. I need a definite solution
and what causes this. Please help!
i recently downloaded the same version and compiled/linked/ran the bouncing
ball program right at the start (i think its an example project). i'm new to
dev-c++ but not new to programming. line 30 says compilation successful which
leads me to believe that an attempt link was never performed. try the
compile/link/run process. if that's barking up the wrong tree, search for the
directory where the exe is dropped. Is the executable there? can you run it
manually? if so, look for dev-c+ config or project directories to tell the ide
where to find the exe. make sure you link the project.
i just got dev-c++ for another pc of mine and i have the same problem on that
pc. the exe is dropped in the directory i expected and it runs fine when i
start it manually..but the ide / dev-c++ says the project was never compiled
presumably because it doesn't know where the exe is or can't find it. i
updated the 'directories' to tell the ide where to find the exe but nothing
has resolved the problem YET. i'll continue to work this and let u know what
it find out. again.. you can run the exe yourself manually if you know where
the compiler dropped it (default is usually the directory where the *.dev
project file is or the source files are).
In the project opions are you using a working directory, if so try deleting
that path.