You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

146 lines
4.4 KiB

  1. commit 99368862e44740ff4fd33760893f04e14f9dbdf1
  2. Author: Felix Fietkau <nbd@openwrt.org>
  3. Date: Tue Jul 31 00:52:27 2007 +0000
  4. Port the mbsd_multi patch from freewrt, which adds -fhonour-copts. This will emit warnings in packages that don't use our target cflags properly
  5. SVN-Revision: 8256
  6. This patch brings over a feature from MirBSD:
  7. * -fhonour-copts
  8. If this option is not given, it's warned (depending
  9. on environment variables). This is to catch errors
  10. of misbuilt packages which override CFLAGS themselves.
  11. This patch was authored by Thorsten Glaser <tg at mirbsd.de>
  12. with copyright assignment to the FSF in effect.
  13. --- a/gcc/c-family/c-opts.c
  14. +++ b/gcc/c-family/c-opts.c
  15. @@ -107,6 +107,9 @@ static dump_flags_t original_dump_flags;
  16. /* Whether any standard preincluded header has been preincluded. */
  17. static bool done_preinclude;
  18. +/* Check if a port honours COPTS. */
  19. +static int honour_copts = 0;
  20. +
  21. static void handle_OPT_d (const char *);
  22. static void set_std_cxx98 (int);
  23. static void set_std_cxx11 (int);
  24. @@ -469,6 +472,12 @@ c_common_handle_option (size_t scode, co
  25. flag_no_builtin = !value;
  26. break;
  27. + case OPT_fhonour_copts:
  28. + if (c_language == clk_c) {
  29. + honour_copts++;
  30. + }
  31. + break;
  32. +
  33. case OPT_fconstant_string_class_:
  34. constant_string_class_name = arg;
  35. break;
  36. @@ -1196,6 +1205,47 @@ c_common_init (void)
  37. return false;
  38. }
  39. + if (c_language == clk_c) {
  40. + char *ev = getenv ("GCC_HONOUR_COPTS");
  41. + int evv;
  42. + if (ev == NULL)
  43. + evv = -1;
  44. + else if ((*ev == '0') || (*ev == '\0'))
  45. + evv = 0;
  46. + else if (*ev == '1')
  47. + evv = 1;
  48. + else if (*ev == '2')
  49. + evv = 2;
  50. + else if (*ev == 's')
  51. + evv = -1;
  52. + else {
  53. + warning (0, "unknown GCC_HONOUR_COPTS value, assuming 1");
  54. + evv = 1; /* maybe depend this on something like MIRBSD_NATIVE? */
  55. + }
  56. + if (evv == 1) {
  57. + if (honour_copts == 0) {
  58. + error ("someone does not honour COPTS at all in lenient mode");
  59. + return false;
  60. + } else if (honour_copts != 1) {
  61. + warning (0, "someone does not honour COPTS correctly, passed %d times",
  62. + honour_copts);
  63. + }
  64. + } else if (evv == 2) {
  65. + if (honour_copts == 0) {
  66. + error ("someone does not honour COPTS at all in strict mode");
  67. + return false;
  68. + } else if (honour_copts != 1) {
  69. + error ("someone does not honour COPTS correctly, passed %d times",
  70. + honour_copts);
  71. + return false;
  72. + }
  73. + } else if (evv == 0) {
  74. + if (honour_copts != 1)
  75. + inform (UNKNOWN_LOCATION, "someone does not honour COPTS correctly, passed %d times",
  76. + honour_copts);
  77. + }
  78. + }
  79. +
  80. return true;
  81. }
  82. --- a/gcc/c-family/c.opt
  83. +++ b/gcc/c-family/c.opt
  84. @@ -1663,6 +1663,9 @@ C++ ObjC++ Optimization Alias(fexception
  85. fhonor-std
  86. C++ ObjC++ WarnRemoved
  87. +fhonour-copts
  88. +C ObjC C++ ObjC++ RejectNegative
  89. +
  90. fhosted
  91. C ObjC
  92. Assume normal C execution environment.
  93. --- a/gcc/common.opt
  94. +++ b/gcc/common.opt
  95. @@ -1698,6 +1698,9 @@ fguess-branch-probability
  96. Common Var(flag_guess_branch_prob) Optimization
  97. Enable guessing of branch probabilities.
  98. +fhonour-copts
  99. +Common RejectNegative
  100. +
  101. ; Nonzero means ignore `#ident' directives. 0 means handle them.
  102. ; Generate position-independent code for executables if possible
  103. ; On SVR4 targets, it also controls whether or not to emit a
  104. --- a/gcc/doc/invoke.texi
  105. +++ b/gcc/doc/invoke.texi
  106. @@ -9055,6 +9055,17 @@ This option is only supported for C and
  107. @option{-Wall} and by @option{-Wpedantic}, which can be disabled with
  108. @option{-Wno-pointer-sign}.
  109. +@item -fhonour-copts
  110. +@opindex fhonour-copts
  111. +If @env{GCC_HONOUR_COPTS} is set to 1, abort if this option is not
  112. +given at least once, and warn if it is given more than once.
  113. +If @env{GCC_HONOUR_COPTS} is set to 2, abort if this option is not
  114. +given exactly once.
  115. +If @env{GCC_HONOUR_COPTS} is set to 0 or unset, warn if this option
  116. +is not given exactly once.
  117. +The warning is quelled if @env{GCC_HONOUR_COPTS} is set to @samp{s}.
  118. +This flag and environment variable only affect the C language.
  119. +
  120. @item -Wstack-protector
  121. @opindex Wstack-protector
  122. @opindex Wno-stack-protector
  123. --- a/gcc/opts.c
  124. +++ b/gcc/opts.c
  125. @@ -2448,6 +2448,9 @@ common_handle_option (struct gcc_options
  126. /* Currently handled in a prescan. */
  127. break;
  128. + case OPT_fhonour_copts:
  129. + break;
  130. +
  131. case OPT_Werror:
  132. dc->warning_as_error_requested = value;
  133. break;