This is a result of my bug but it revealed a problem in JUCE
bool File::hasWriteAccess() const throw()
{
if (exists())
return juce_canWriteToFile (fullPath);
else if (! isDirectory())
return getParentDirectory().hasWriteAccess();
else
return false;
Will cause a stack overflow if the file path is an empty string
Also I am waiting for comments on the XCode JUCE project with debug/release builds:
http://www.adbe.org/juceforum/viewtopic.php?t=285
If someone has an idea why my project (VST plugin) is not stopping on breakpoints (I use Tracktion as the executable).
BTW Tracktion outputs some debug messages to the debug console on OS X like what plugins it loads, etc.
thanks