Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] [GCC Flags] - compilation flags per file

Hi. I would like to know if CDT has support to manage how to pass compilation flags per file instead of the whole project.

For instance, using GCC at command line I can do:

gcc -c -mloop-unroll asdf.c -o asdf.o
gcc -c qewr.c -o qwer.o
gcc asdf.o qwer.o -o blah

This is an example where I want to loop-unroll only asdf.c and do not apply it to qwer.c

Back to the top