Compiling JUCE with Dev-C++ how???
-
Robert Randolph Robert Randolph https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=7328
- KVRAF
- 2226 posts since 25 May, 2003 from Saint Petersburg, Florida
btw, I had to toss this in the libs http://www.gamap.cz/tutors/directx/download/dx4devc.zip to get it compiling.
-
Robert Randolph Robert Randolph https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=7328
- KVRAF
- 2226 posts since 25 May, 2003 from Saint Petersburg, Florida
Argh. When I use Jule's demo .dev file (rather than my own agonizing setup)... it wants his damn VC++ memory leak fixer-upper.
No way to get that, that I know of... will just have to live without _CrtDumpMemoryLeaks()
No way to get that, that I know of... will just have to live without _CrtDumpMemoryLeaks()
-
Robert Randolph Robert Randolph https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=7328
- KVRAF
- 2226 posts since 25 May, 2003 from Saint Petersburg, Florida
ok, I broke it. shit motherfucking bitch.
*screaming noises*
*screaming noises*
-
Robert Randolph Robert Randolph https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=7328
- KVRAF
- 2226 posts since 25 May, 2003 from Saint Petersburg, Florida
OK. uninstalled everything, deleted all my terrible hacking and patching.
Doing this the right away. Will post update in a few.... I hope.
First. Reinstall.
Second. Run update and get DX9, windows shit, and a few other wee bits that I didnt realize were lacking from the installation on this computer. (it's amazing how you can work yourself into a total frenzy completely devoid of rational thought).
third.... waiting for dl. Will edit in a moment.
Doing this the right away. Will post update in a few.... I hope.
First. Reinstall.
Second. Run update and get DX9, windows shit, and a few other wee bits that I didnt realize were lacking from the installation on this computer. (it's amazing how you can work yourself into a total frenzy completely devoid of rational thought).
third.... waiting for dl. Will edit in a moment.
Last edited by Robert Randolph on Fri Sep 03, 2004 7:09 am, edited 1 time in total.
-
- KVRAF
- Topic Starter
- 1974 posts since 21 Jun, 2002 from Earth
I'm gonna crawl back into the delphi hole... I keep getting sidetracked by this Dev-C++ stuff when I need to finish my biz here at work (considering it's only 12am) ARGH! I dunno if my mental can take it. It's too frustrating!
the world would be a better place in DELPHI damnit!
ok, so maybe I won't give up... but f**k it's annoying!
the world would be a better place in DELPHI damnit!
ok, so maybe I won't give up... but f**k it's annoying!
ModuLR / Radio
-
Robert Randolph Robert Randolph https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=7328
- KVRAF
- 2226 posts since 25 May, 2003 from Saint Petersburg, Florida
Give it a few.. I got it working once doing it completely wrong. Im working on posting directions to doing it /right/ in the post above yours.ModuLR wrote:I'm gonna crawl back into the delphi hole... I keep getting sidetracked by this Dev-C++ stuff when I need to finish my biz here at work (considering it's only 12am) ARGH! I dunno if my mental can take it. It's too frustrating!
the world would be a better place in DELPHI damnit!![]()
ok, so maybe I won't give up... but f**k it's annoying!
-
Karbon L. Forms Karbon L. Forms https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=29033
- KVRian
- 1415 posts since 10 Jun, 2004 from Inverness, Scotland
Did it.
Added C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Include to the C++ include directories.
Thats to get the dsound.h header for directsound. I have visual studio. you may need to get SDK from the softies or that doodad Robert found.
Compiled.
Then when I got the crtdbg.h error I changed it thus...
Added C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Include to the C++ include directories.
Thats to get the dsound.h header for directsound. I have visual studio. you may need to get SDK from the softies or that doodad Robert found.
Compiled.
Then when I got the crtdbg.h error I changed it thus...
Code: Select all
//#include <crtdbg.h>
#include "C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\crtdbg.h"
Last edited by Karbon L. Forms on Fri Sep 03, 2004 7:15 am, edited 1 time in total.
.................................
"Hell is other People" J.P.Sartre
.................................
"Hell is other People" J.P.Sartre
.................................
-
Robert Randolph Robert Randolph https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=7328
- KVRAF
- 2226 posts since 25 May, 2003 from Saint Petersburg, Florida
Doesnt work for this w/o visual studio....Karbon L. Forms wrote:Did it.
Added C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Include to the C++ include directories. Thats to get the dsound.h header for directsound.
Compiled
Then when I got the crtdbg.h error I changed it thus...
Code: Select all
//#include <crtdbg.h> #include "C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\crtdbg.h"
I got it working w/o VS already
-
Karbon L. Forms Karbon L. Forms https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=29033
- KVRian
- 1415 posts since 10 Jun, 2004 from Inverness, Scotland
Y. You can comment out the #include <crtdbg.h> and the error line it produces (_takeADump(); or something).
then just make sure you've got a PlatformSDK to put in your include list.
Why am I bothering with this shite? I've got VS running happily.
then just make sure you've got a PlatformSDK to put in your include list.
Why am I bothering with this shite? I've got VS running happily.
.................................
"Hell is other People" J.P.Sartre
.................................
"Hell is other People" J.P.Sartre
.................................
-
Karbon L. Forms Karbon L. Forms https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=29033
- KVRian
- 1415 posts since 10 Jun, 2004 from Inverness, Scotland
Yo. Mods. See that sprawling exportMidi procedure, with it's 2 sprawling sub-procedures in StepChild?ModuLR wrote:I'm gonna crawl back into the delphi hole... I keep getting sidetracked by this Dev-C++ stuff when I need to finish my biz here at work (considering it's only 12am) ARGH! I dunno if my mental can take it. It's too frustrating!
the world would be a better place in DELPHI damnit!![]()
ok, so maybe I won't give up... but f**k it's annoying!
Your delphis got 285 lines. My JUCE-C++ version has 28.
.................................
"Hell is other People" J.P.Sartre
.................................
"Hell is other People" J.P.Sartre
.................................
-
- Chief Tracktioneer
- 532 posts since 14 Nov, 2002 from London
It should all build ok from the project as long as you've got the PlatformSDK in your path.. Sorry I didn't have time to do a DevC++ project for the demo projects. And I also meant to leave the BinaryBuilder.cpp file in there rather than making people create it manually - obviously my cleanup batch files must have deleted it, so I'll fix that!
It's actually quite tricky giving instructions about how to build these things, because it's hard to keep track of all the things you might need to have installed/on your include path/on your library path/etc for it to work, and project files never seem to work the same on other people's machines.. For the next release I'll try to add more detail to the build instructions.
It's actually quite tricky giving instructions about how to build these things, because it's hard to keep track of all the things you might need to have installed/on your include path/on your library path/etc for it to work, and project files never seem to work the same on other people's machines.. For the next release I'll try to add more detail to the build instructions.
-
Robert Randolph Robert Randolph https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=7328
- KVRAF
- 2226 posts since 25 May, 2003 from Saint Petersburg, Florida
My main problem atm is getting this f**ker to link to my nice little juce.a I finally got to compile...
-
Robert Randolph Robert Randolph https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=7328
- KVRAF
- 2226 posts since 25 May, 2003 from Saint Petersburg, Florida
Hrm. -ljuce must rename to libjuce.a, there's another flag to do it, but it's 4am sooo...
The lib is missing some stuff too, will have to hunt that down later I think.
The lib is missing some stuff too, will have to hunt that down later I think.
-
- KVRist
- 33 posts since 19 Aug, 2004
Please tell me it's not this hard to build JUCE using dev-c++. Robert, I really hope you succeed. And please let me know how you did it!
Jules, I can't believe you took time to post reply. Thanks for helping out a newbie programmer
How do you find time to code and post? They are right: you are a lean, mean, coding machine!
Jules, I can't believe you took time to post reply. Thanks for helping out a newbie programmer
