简体   繁体   中英

Compile C codes with ANSI in Eclipse

I need my code to be fully up to ANSI standards like using this command line in Unix System:

gcc -ansi -Wall -pedantic code.c -o code...

How can I (manually) compile my code with those standards or is there any settings in Eclipse that can achieve this standard?

Thank you very much!

Go to Project\\Properties\\C/C++ Build\\Settings

Then find:

'Miscellaneous' and check 'Support ANSI Programs', 'Warnings' and check 'Pedantic', 'Pedantic warnings as error', 'All warnings', 'Debugging' and choose preferred debug standards, 'Optimisations' then select any level.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM