Magic Lantern Forum

Developing Magic Lantern => General Development => Topic started by: wolf on January 29, 2013, 05:58:03 PM

Title: Compile problems console.c plugins=y
Post by: wolf on January 29, 2013, 05:58:03 PM
I can't compile ML with plugins=y when in console.c the line #179 begins with static.
Without it works, but I dont't know, if it's important for console_vprintf to be static.

static int console_vprintf(const char* fmt, va_list ap) // don't DebugMsg from here!
{
    char buf[256];
    int len = vsnprintf( buf, 255, fmt, ap );
    console_puts(buf);
return len;
}

Title: R: Compile problems console.c plugins=y
Post by: nanomad on January 29, 2013, 09:01:24 PM
Kinda hard to debug without an error message :p
Post the build log