On 07/03/2014 11:04 PM, Christian Svensson wrote:
> I have this code:
> #include <stdarg.h>
> #include <stdio.h>
> #include <stdlib.h>
>
> extern int _board_clk_freq;
>
> void finish_test(const char *fmt, ...) {
>   va_list arg_list;
>   va_start(arg_list, fmt);
>   vprintf(fmt, arg_list);
>   va_end(arg_list);
>   fflush(stdout);
> }
>
Maybe noteworthy: The problem comes with linking if user code has va_*
or assert (thats what I observed in the multicore branch).

Bye,
Stefan

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

_______________________________________________
OpenRISC mailing list
[email protected]
http://lists.openrisc.net/listinfo/openrisc

Reply via email to