Page 1 of 1

Known issues with gcc 4.6.3?

Posted: Fri Jan 17, 2014 3:56 pm
by ccaa59
Hello,
i used codelite 5.1 with ubuntu 10.04 (gcc 4.4.3) and winXP (mingw4.7.1) and I like it.
Now I tried codelite 5.4 with ubuntu 12.04 (gcc 4.6.3) and it's no longer possible to compile my code.
Warnings are treated as errors and build stops.

Downgrade to 5.1 didn't help, but downgrade to gcc 4.4.7 was successful.
Is there anyone with similar problems?

Re: Known issues with gcc 4.6.3?

Posted: Fri Jan 17, 2014 4:02 pm
by eranif
Please provide more information as described here:

http://forums.codelite.org/viewtopic.php?f=3&t=804

Eran

Re: Known issues with gcc 4.6.3?

Posted: Fri Jan 17, 2014 5:11 pm
by ccaa59
no self build versions
http://repos.codelite.org/ubuntu/ precise universe
http://repos.codelite.org/ubuntu-5.1/ precise universe
ubuntu 12.04 LTS default with gcc 4.6.3

Re: Known issues with gcc 4.6.3?

Posted: Fri Jan 17, 2014 8:00 pm
by Jarod42
I would say that you compile with `-Werror` (and some other flags), and with the upgrade of gcc, you have new warning (not caught by previous version) which turn into error (due to `-Werror` flag). So fix your code (or remove `-Werror` flag).

BTW, unrelated to Codelite.