From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23789 invoked by alias); 11 Nov 2004 04:39:35 -0000 Mailing-List: contact binutils-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sources.redhat.com Received: (qmail 23749 invoked from network); 11 Nov 2004 04:39:30 -0000 Received: from unknown (209.128.65.135) by sourceware.org with QMTP; 11 Nov 2004 04:39:30 -0000 Received: (qmail 1051 invoked by uid 10); 11 Nov 2004 04:39:29 -0000 Received: (qmail 27103 invoked by uid 500); 11 Nov 2004 04:39:20 -0000 Mail-Followup-To: binutils@sources.redhat.com, eagle_zhou@ali.com.tw From: Ian Lance Taylor To: eagle_zhou@ali.com.tw Cc: binutils@sources.redhat.com Subject: Re: the problem : assign the section's order in shared library based on mips platform References: Date: Thu, 11 Nov 2004 04:39:00 -0000 In-Reply-To: Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2004-11/txt/msg00180.txt.bz2 eagle_zhou@ali.com.tw writes: > I want to take out the continuous part i care(only include > .text/.data/.bss/..) from the shared library, > and discard the those part i don't care ( dynsym/dynstr/dynamic/hash/...). You may not care about those sections, but the dynamic linker certainly does. You can't remove those sections and expect the program to continue to run on a Unix-like system, unless you write your own dynamic linker which operates on some different principle. Ian