From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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-Archive: List-Post: List-Help: Sender: gcc-patches-owner@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 18:20:00 -0000 Message-ID: <87y4nf45ya.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-SW-Source: 2015-03/txt/msg00082.txt.bz2 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}