From bb0b3e3a3b5a6fdc78b9b36317b0a99e7a109d84 Mon Sep 17 00:00:00 2001 From: Andreas Zwinkau Date: Wed, 18 Aug 2010 12:51:13 +0000 Subject: [PATCH] cparser ignores -fmessage-length now [r27935] --- main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.c b/main.c index 7e3f45e..57ef461 100644 --- a/main.c +++ b/main.c @@ -888,6 +888,8 @@ int main(int argc, char **argv) strstart(orig_opt, "align-jumps=") || strstart(orig_opt, "align-functions=")) { fprintf(stderr, "ignoring gcc option '-f%s'\n", orig_opt); + } else if (strstart(orig_opt, "message-length=")) { + /* ignore: would only affect error message format */ } else if (streq(opt, "fast-math") || streq(opt, "jump-tables") || streq(opt, "expensive-optimizations") || -- 2.20.1