From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: AIX 5.2 unexec problem Date: Tue, 28 Nov 2006 22:30:46 -0500 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1164771200 2529 80.91.229.2 (29 Nov 2006 03:33:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 29 Nov 2006 03:33:20 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Nov 29 04:33:19 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GpGCA-0005CI-O8 for ged-emacs-devel@m.gmane.org; Wed, 29 Nov 2006 04:33:14 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GpGC9-0006YA-T1 for ged-emacs-devel@m.gmane.org; Tue, 28 Nov 2006 22:33:13 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GpG9o-0004w2-Jc for emacs-devel@gnu.org; Tue, 28 Nov 2006 22:30:48 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GpG9n-0004uv-Ve for emacs-devel@gnu.org; Tue, 28 Nov 2006 22:30:48 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GpG9n-0004uc-IK for emacs-devel@gnu.org; Tue, 28 Nov 2006 22:30:47 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GpG9n-0002Pj-Jr for emacs-devel@gnu.org; Tue, 28 Nov 2006 22:30:47 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.52) id 1GpG9m-00008J-IF; Tue, 28 Nov 2006 22:30:46 -0500 Original-To: jbuehler@spirentcom.com In-reply-to: (message from Joe Buehler on Tue, 28 Nov 2006 09:46:48 -0500) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:63014 Archived-At: My question regards treatment of .data/.bss. Is all of the read/write data supposed to be preserved across unexec? It is abslutely necessary to dump the bss as data because it is filled with Lisp objects that must be preserved in the dumped Emacs. Newer versions of the AIX linker reorder objects, so the manual placement of lastfile.o on the link line doesn't cause the desired memory layout. The option -bnoobjreorder needs to be added to the link command line to turn off object reordering. Can you fix it using that method?