From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23532 invoked by alias); 19 Apr 2011 12:55:17 -0000 Received: (qmail 23519 invoked by uid 22791); 19 Apr 2011 12:55:16 -0000 X-SWARE-Spam-Status: No, hits=-0.6 required=5.0 tests=AWL,BAYES_20,DKIM_SIGNED,DKIM_VALID,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RFC_ABUSE_POST,TW_XF,TW_XR,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: sourceware.org Received: from mail-vx0-f169.google.com (HELO mail-vx0-f169.google.com) (209.85.220.169) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 19 Apr 2011 12:55:02 +0000 Received: by vxk20 with SMTP id 20so5735642vxk.0 for ; Tue, 19 Apr 2011 05:55:01 -0700 (PDT) MIME-Version: 1.0 Received: by 10.52.95.203 with SMTP id dm11mr5792607vdb.213.1303217701926; Tue, 19 Apr 2011 05:55:01 -0700 (PDT) Received: by 10.220.191.7 with HTTP; Tue, 19 Apr 2011 05:55:01 -0700 (PDT) Date: Tue, 19 Apr 2011 12:55:00 -0000 Message-ID: Subject: ld exclusion of *default* memory address mapping From: Jon Grant To: binutils@sourceware.org Content-Type: text/plain; charset=UTF-8 Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2011-04/txt/msg00263.txt.bz2 Hello I am using a build of ld, v2.20. I would like to exclude the *default* catch all memory address visible in the map file quote below. Read through the man page, but have not spotted an option to disable this *default* address mapping. If anyone could point me to the documentation of the option I should use that would be appreciated. Please keep my email address included i any replies as I am not on this list. Thank you for any help. Best regards, Jon map file quote ============= Name Origin Length Attributes rom 0x00000000 0x00400000 xr ram 0x10000000 0x00100000 xrw *default* 0x00000000 0xffffffff ============= quote from my ld script ================= MEMORY { rom (rx) : org = 0x00000000, len = 4M ram (rwx) : org = 0x10000000, len = 1M } ==================