- Improved display of cache max size values.
- - For debugging purposes, the variable `CCACHE_VERBOSE` may now be set to
- make ccache print executed commands to standard output.
-
- The following options are no longer hashed in the preprocessor mode:
`-imacros`, `-imultilib`, `-iprefix`, `-iquote`, `-isysroot`,
`-iwithprefix`, `-iwithprefixbefore`, `-nostdinc`, `-nostdinc++` and
cc_log("Failed; falling back to running the real compiler");
cc_log_executed_command(orig_args->argv);
- if (getenv("CCACHE_VERBOSE")) {
- print_executed_command(stdout, orig_args->argv);
- }
execv(orig_args->argv[0], orig_args->argv);
cc_log("execv returned (%s)!", strerror(errno));
perror(orig_args->argv[0]);
int status;
cc_log_executed_command(argv);
- if (getenv("CCACHE_VERBOSE")) {
- print_executed_command(stdout, argv);
- }
pid = fork();
if (pid == -1) fatal("Failed to fork");
default is that it can give incorrect line number information in compiler
warning messages. Enabling the unifier implies turning off the direct mode.
-*CCACHE_VERBOSE*::
-
- If you set the environment variable *CCACHE_VERBOSE*, ccache prints (to the
- standard output) the executed command lines when running the preprocessor
- and the compiler.
-
CACHE SIZE MANAGEMENT
---------------------