On Wed, Jul 24, 2013 at 11:52 AM, onur gulsevgi <ogulsevgi(at)gmail(dot)com> wrote:
> Hi Dev again,
>
> Thank you for the information.
>
> How can I figure out whether I have GCC both versions installed?
>
ls -l /usr/bin/gcc*
You could also set shell environment variable CC to point to your C
compiler:
export CC=/usr/bin/gcc-4.*x*
> Or else
> How I can I remove manually option from your Makefile
>
> My CFLAGS is also
> CFLAGS = -g -O2
> in Makefile.
>
That's strange, then where it is picking from.Grep for -Wno-pointer-sign in
your source?
Regards...