From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 35409 invoked by alias); 4 Apr 2018 23:01:54 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 35394 invoked by uid 89); 4 Apr 2018 23:01:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: 9pmail.ess.barracuda.com Received: from 9pmail.ess.barracuda.com (HELO 9pmail.ess.barracuda.com) (64.235.154.211) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 04 Apr 2018 23:01:53 +0000 Received: from mipsdag02.mipstec.com (mail2.mips.com [12.201.5.32]) by mx1411.ess.rzc.cudaops.com (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA256 bits=128 verify=NO); Wed, 04 Apr 2018 23:01:49 +0000 Received: from [10.20.78.129] (10.20.78.129) by mipsdag02.mipstec.com (10.20.40.47) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1415.2; Wed, 4 Apr 2018 16:02:01 -0700 Date: Thu, 05 Apr 2018 00:05:00 -0000 From: "Maciej W. Rozycki" To: V R CC: Subject: Re: how to generate - "procedure linkage table" for MIPS In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-ClientProxiedBy: mipsdag02.mipstec.com (10.20.40.47) To mipsdag02.mipstec.com (10.20.40.47) X-BESS-ID: 1522882909-452059-5268-9749-1 X-BESS-VER: 2018.4.1-r1804041913 X-BESS-Apparent-Source-IP: 12.201.5.32 X-BESS-Outbound-Spam-Score: 0.00 X-BESS-Outbound-Spam-Report: Code version 3.2, rules version 3.2.2.191694 Rule breakdown below pts rule name description ---- ---------------------- -------------------------------- 0.00 BSF_BESS_OUTBOUND META: BESS Outbound X-BESS-Outbound-Spam-Status: SCORE=0.00 using account:ESS59374 scores of KILL_LEVEL=7.0 tests=BSF_BESS_OUTBOUND X-BESS-BRTS-Status:1 X-SW-Source: 2018-04/txt/msg00041.txt.bz2 Hi Vidya, On Mon, 5 Mar 2018, V R wrote: > Also on enabling gcc on MIPS with "=E2=80=93with-mips-plt " option the pl= t stub > wasnt seen. Is there >=20 > anything missing that needs to be done or is there any limitation , please > let me know. What problem are you trying to solve? Can you run `readelf -S' on a MIPS= =20 executable you think you have a trouble with and post the result? NB MIPS shared libraries use the so called lazy binding stubs, where the=20 call is always indirect, rather than a procedure linkage table to achieve=20 a similar effect, so you won't ever see a PLT in a MIPS shared library. Maciej