summaryrefslogtreecommitdiff
path: root/src/arg.c
diff options
context:
space:
mode:
authorMartin Pool <mbp@sourcefrog.net>2025-01-25 07:53:41 -0800
committerGitHub <noreply@github.com>2025-01-25 07:53:41 -0800
commit66bf4c56f6af2243c48748139c078f4f01cd639b (patch)
tree7c250548b2a2f4a597290aeea19f5653d084ef8e /src/arg.c
parent324f752f3fa30f15a44463b683c56f61c66bb3b4 (diff)
parente873874d49ddc22a5f2d1049d601944e18980556 (diff)
Merge pull request #531 from wzssyqa/spec-optionHEADorigin/masterorigin/HEADmaster
Add sysroot option and allow -specs option from compiler
Diffstat (limited to 'src/arg.c')
-rw-r--r--src/arg.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/arg.c b/src/arg.c
index 6ca5130..ec20097 100644
--- a/src/arg.c
+++ b/src/arg.c
@@ -199,9 +199,6 @@ int dcc_scan_args(char *argv[], char **input_file, char **output_file,
rs_trace("%s must be local", a);
return EXIT_DISTCC_FAILED;
}
- } else if (str_startswith("-specs=", a)) {
- rs_trace("%s must be local", a);
- return EXIT_DISTCC_FAILED;
} else if (!strcmp(a, "-S")) {
seen_opt_s = 1;
} else if (!strcmp(a, "-fprofile-arcs")