- Fixed NFS issues.
- - Bail out on profiling options --coverage, -fprofile-arcs,
- -fprofile-generate, -fprofile-use and -ftest-coverage.
+ - Bail out on too hard compiler options --coverage, -fprofile-arcs,
+ -fprofile-generate, -fprofile-use, -ftest-coverage and -save-temps. Also
+ bail out on "@file" style options.
- -MD/-MMD options without -MT/-MF are now handled correctly.
strcmp(argv[i], "-fprofile-generate") == 0 ||
strcmp(argv[i], "-fprofile-use") == 0 ||
strcmp(argv[i], "-ftest-coverage") == 0 ||
+ strcmp(argv[i], "-save-temps") == 0 ||
strcmp(argv[i], "-x") == 0) {
cc_log("Compiler option %s is unsupported", argv[i]);
stats_update(STATS_UNSUPPORTED);