[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [MiNT] GCC / GDB & -Wl,--traditional-format




Am Samstag, den 08.01.2011, 18:37 +0100 schrieb Vincent Rivière <vincent.riviere@freesbee.fr>:

1.) PureC hangs when opening the produces app, OS hangs...
2.) When loading the program with the rudimentary Paral debugger, I can't lookup my test symbols (a function named "testme"), maybe it is in there,
but the search function of paral is not working...

Please send me that software, so I can test with some emulator.

It's just an simple hello world, like this:

#include <stdio.h>

void testme(char * str)
{
  printf("%s\n", str);
}

int main(void)
{
 testme("Hello World");
}