From patchwork Mon Mar 2 18:20:13 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulrich Drepper X-Patchwork-Id: 445396 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id CF0BC1400DE for ; Tue, 3 Mar 2015 05:20:26 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass reason="1024-bit key; unprotected key" header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=v1F1j2kd; dkim-adsp=none (unprotected policy); dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:subject:date:message-id:mime-version:content-type; q=dns; s= default; b=bTJhC3RrEe50w5Ntb+oIbINZaKZ/oD5t8idqlmBNNF/ynlVk8b5w1 +L8LmIYu1cYK207QDBz6soJEoy6ftw6SyhtntIGR7nnx+K3tQgUXozG/cN9NWu9B gNjDTh117GXFl96sP0UX2+kGeAix/pFD3L+eS2HabjbXx0K6HVr1Rg= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:subject:date:message-id:mime-version:content-type; s= default; bh=SWMfWFsyJL0rv/i9hVDNM9+gjJM=; b=v1F1j2kdGFQMVCHXf870 FU6H4zCnZsUI4jZBoMZ6nAA9STLS8+N0Z4OFzVrcqsP4z8um9ua3z749ZHL0yV/9 b3AQxsT0IPWiY8O6WV+uS7ynzljBwXuYLk7hhLVwLglaA7UzrteMWN3tLeAIU3IA Xd48Qlefn2uSa6kWr6vPcmM= Received: (qmail 11148 invoked by alias); 2 Mar 2015 18:20:19 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 11135 invoked by uid 89); 2 Mar 2015 18:20:18 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=2.4 required=5.0 tests=BAYES_00, FREEMAIL_FROM, KAM_FROM_URIBL_PCCC, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=no version=3.3.2 X-HELO: mail-qa0-f44.google.com Received: from mail-qa0-f44.google.com (HELO mail-qa0-f44.google.com) (209.85.216.44) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 02 Mar 2015 18:20:17 +0000 Received: by mail-qa0-f44.google.com with SMTP id n8so24206445qaq.3 for ; Mon, 02 Mar 2015 10:20:15 -0800 (PST) X-Received: by 10.140.194.204 with SMTP id p195mr52970427qha.21.1425320415662; Mon, 02 Mar 2015 10:20:15 -0800 (PST) Received: from myware.local (pool-72-89-145-18.nycmny.fios.verizon.net. [72.89.145.18]) by mx.google.com with ESMTPSA id 59sm7037617qgf.37.2015.03.02.10.20.15 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 02 Mar 2015 10:20:15 -0800 (PST) Received: from myware.local (localhost.localdomain [127.0.0.1]) by myware.local (8.14.9/8.14.9) with ESMTP id t22IKDYc001548 for ; Mon, 2 Mar 2015 13:20:13 -0500 Received: (from drepper@localhost) by myware.local (8.14.9/8.14.9/Submit) id t22IKDbl001547; Mon, 2 Mar 2015 13:20:13 -0500 From: Ulrich Drepper To: gcc-patches@gcc.gnu.org Subject: [PATCH] fix URL Date: Mon, 02 Mar 2015 13:20:13 -0500 Message-ID: <87y4nf45ya.fsf@gmail.com> MIME-Version: 1.0 A trivial patch to fix the URL of my paper referenced in the documentation. The RH server isn't the canonical address even though it will automatically redirect to the correct address. At least for now, who knows. OK? gcc/ChangeLog 2015-03-02 Ulrich Drepper * doc/invoke.texi (Options for Code Generation Conventions): Fix URL of DSO paper. diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index a87376e..6e7cc82 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -23644,7 +23644,7 @@ GCC@. A good explanation of the benefits offered by ensuring ELF symbols have the correct visibility is given by ``How To Write Shared Libraries'' by Ulrich Drepper (which can be found at -@w{@uref{http://people.redhat.com/~drepper/}})---however a superior +@w{@uref{http://www.akkadia.org/drepper/}})---however a superior solution made possible by this option to marking things hidden when the default is public is to make the default hidden and mark things public. This is the norm with DLLs on Windows and with @option{-fvisibility=hidden}