I keep scratching my head when reading the forum and tutorials whenever somone talks about the application they are using to code, applications like DevCpp, Visual C++, codewarrior, and so on. What does this have to do with it and why are there the versions of the .libs and .dlls? I would understand if there was for example one for Cygwin and one for Borland, what am I missing?
The reason I ask is because I can't compile the visualstudio version with borland on mingw, they have the same error:
! C:\DOCUME~1\b\LOCALS~1\Temp/ccstbaaa.o(.text+0x13e):main.cpp: undefined reference to `_imp___ZN
* 3irr12createDeviceENS_5video11EDriverTypeERKNS_4core11dimension2dIiEEjbbPNS_14IEve
So what do I use to compile it? Is there anything free? Does the devcpp support dx on windows?(some say yes, some say no)
Running windows xp home, dx8, using a program called Vide, I have tried the included make files and others all with the same result.
here's one makefile:
CPP = g++
OPTS = -I"../../include" -I"/usr/X11R6/include" -L"/usr/X11R6/lib" -L"../../lib/VisualStudio" -lIrrlicht
all:
$(CPP) main.cpp -o example $(OPTS)
clean:
rm example
Please clairify visualstudio and devcpp issue
-
Guest
-
Guest
Thank you that was what I wanted to know
however I read on the devcpp website somthing to the effect that devcpp is not a compiler, as I already thought. So what my question should have been was
Is there a free alternative to VC++ that I can download that does work for this and includes VC++'s compiler?
however I read on the devcpp website somthing to the effect that devcpp is not a compiler, as I already thought. So what my question should have been was
Is there a free alternative to VC++ that I can download that does work for this and includes VC++'s compiler?
dev cpp is actually not a compilier but one is included with it and it is a complete development enviroment and will produce stand alone executables.
irrlicht works with devcpp
all you need to start programming with irrlicht is devcpp and the irrlicht sdk
in fact probably close to 1/3 of the irrlicht users use devcpp to program in
all of the demos compile with devcpp with no changes needed
(except from changing DT_DIRECTX to DT_OPENGL at the start of the main()
)
irrlicht works with devcpp
all you need to start programming with irrlicht is devcpp and the irrlicht sdk
in fact probably close to 1/3 of the irrlicht users use devcpp to program in
all of the demos compile with devcpp with no changes needed
(except from changing DT_DIRECTX to DT_OPENGL at the start of the main()
)
-
Guest
-
Guest