Commit dfb45725 by Richard Kenner

(cpp_handle_options): Set warn_undef from -Wundef and -Wno-undef.

From-SVN: r13879
parent 6ac34fdc
......@@ -6490,6 +6490,10 @@ cpp_handle_options (pfile, argc, argv)
opts->warn_stringify = 1;
else if (!strcmp (argv[i], "-Wno-traditional"))
opts->warn_stringify = 0;
else if (!strcmp (argv[i], "-Wundef"))
opts->warn_undef = 1;
else if (!strcmp (argv[i], "-Wno-undef"))
opts->warn_undef = 0;
else if (!strcmp (argv[i], "-Wimport"))
opts->warn_import = 1;
else if (!strcmp (argv[i], "-Wno-import"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment