* Convert gcc48 to simple meta-pkg * Potentially fix non-NetBSD packaging * Fix gcc48-libs/gcc48-cc++ build under OpenBSD/amd64 5.5 * Enable graphite option, from wip/gcc48snapshot via Xiyue Deng * Tweak nls option Changelog: GCC 4.8.3 This is the [35]list of problem reports (PRs) from GCC's bug tracking system that are known to be fixed in the 4.8.3 release. This list might not be complete (that is, it is possible that some PRs that have been fixed are not listed here). Support for the new powerpc64le-linux platform has been added. It defaults to generating code that conforms to the ELFV2
13 lines
563 B
C
13 lines
563 B
C
$NetBSD: patch-gcc_toplev.c,v 1.1 2014/05/31 13:06:25 ryoon Exp $
|
|
|
|
--- gcc/toplev.c.orig 2013-03-28 08:29:51.000000000 +0000
|
|
+++ gcc/toplev.c
|
|
@@ -1519,6 +1519,8 @@ process_options (void)
|
|
|
|
/* Targets must be able to place spill slots at lower addresses. If the
|
|
target already uses a soft frame pointer, the transition is trivial. */
|
|
+ if (flag_stack_protect == -1)
|
|
+ flag_stack_protect = FRAME_GROWS_DOWNWARD ? 1 : 0;
|
|
if (!FRAME_GROWS_DOWNWARD && flag_stack_protect)
|
|
{
|
|
warning (0, "-fstack-protector not supported for this target");
|