В Fri, 20 Jun 2014 10:14:18 +0200, Riccardo Mottola написа:

> I wonder if we can foce executing the test without opt. flags  or
> complicate so that it doesn't get optimized..

That's easy, it is already done for other tests.

Before the test:
saved_CFLAGS="$CFLAGS"
CFLAGS=

...test...

And then restore them after the test:

CFLAGS="$saved_CFLAGS"

> config.align.c: In function 'main':
> config.align.c:13:16: warning: incompatible implicit declaration of
> built-in function 'malloc'
>     char  *buf = malloc(30);

Missing #include <stdlib.h>.


_______________________________________________
Discuss-gnustep mailing list
Discuss-gnustep@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnustep

Reply via email to