I see that gcc has a -include file option that behaves (sort of) like the first line of the file was
#include "file"
What are some good uses for this option?
|
I see that gcc has a -include file option that behaves (sort of) like the first line of the file was
What are some good uses for this option? |
|||||||||||
|
|
One real-life use of the When building the Linux kernel, you can run through a huge menu of configuration options to customize the built kernel. For instance, here is the configuration option for whether you want to support more than one CPU core on the x86 architecture, for the Linux 3.0 kernel:
Within the source code, this option appears as a preprocessor symbol, How are these preprocessor symbols defined? They are not defined on the compiler command line, since it would then be ridiculously long (there are literally thousands of these symbols on a typical distribution kernel; I count over 4000 of them for the kernel running on this machine). Instead, a magic header file is automatically generated with all these options. This header file is then automatically included on all the compiled files, via an Since the
Either of these options is clearly inferior to There is another use of |
|||
|
|
|
It's useful for things like prefix header files which are going to be #included in all files in a project - somewhat like the dreaded StdAfx.h in Windows or the .prefix.h files on Mac OS. |
|||
|
|
|
It can be used at compile time in a way similar to library pre-loading at run time: to temporarily override certain things in a source file. For example you can use it to include a header overriding the default glibc symbol versioning if you want to support an older version of glibc than the one on your system. |
|||
|
|