From patchwork Sun Mar 29 20:33:41 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dragan Mladjenovic X-Patchwork-Id: 1263552 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=8.43.85.97; helo=sourceware.org; envelope-from=gcc-patches-bounces@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=rt-rk.com Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48r6kw6DqCz9sRN for ; Mon, 30 Mar 2020 07:34:15 +1100 (AEDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 62281385E00A; Sun, 29 Mar 2020 20:34:12 +0000 (GMT) X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from mail.rt-rk.com (mx2.rt-rk.com [89.216.37.149]) by sourceware.org (Postfix) with ESMTPS id 2F551385B835 for ; Sun, 29 Mar 2020 20:34:10 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 2F551385B835 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=rt-rk.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=dragan.mladjenovic@rt-rk.com Received: from localhost (localhost [127.0.0.1]) by mail.rt-rk.com (Postfix) with ESMTP id D617A1A1D93; Sun, 29 Mar 2020 22:34:07 +0200 (CEST) X-Virus-Scanned: amavisd-new at rt-rk.com Received: from RTRKN341.domain.local (unknown [87.116.179.218]) by mail.rt-rk.com (Postfix) with ESMTPSA id 8491A1A0F26; Sun, 29 Mar 2020 22:34:07 +0200 (CEST) From: Dragan Mladjenovic To: gcc-patches@gcc.gnu.org Subject: [PATCH V2][wwwdocs] Document GNU-stack support added to GCC 10 for MIPS Date: Sun, 29 Mar 2020 22:33:41 +0200 Message-Id: <20200329203341.8041-1-dragan.mladjenovic@rt-rk.com> X-Mailer: git-send-email 2.17.1 X-Spam-Status: No, score=-23.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_DMARC_STATUS, RCVD_IN_ABUSEAT, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Matthew Fortune , Dragan Mladjenovic Errors-To: gcc-patches-bounces@gcc.gnu.org Sender: "Gcc-patches" diff --git a/htdocs/gcc-10/changes.html b/htdocs/gcc-10/changes.html index b5cbcebf..1e1eaf43 100644 --- a/htdocs/gcc-10/changes.html +++ b/htdocs/gcc-10/changes.html @@ -692,7 +692,17 @@ a work-in-progress.

- +

MIPS

+
    +
  • The mips*-*-linux* targets now mark object files with + appropriate GNU-stack note, facilitating use of non-executable stack + hardening on GNU/Linux. + The soft-float targets have this feature enabled by default, while + for hard-float targets it is required for GCC to be configured with + --with-glibc-version=2.31 + against glibc 2.31 or later. +
  • +