From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18098 invoked by alias); 19 Jan 2012 11:45:30 -0000 Received: (qmail 18088 invoked by uid 22791); 19 Jan 2012 11:45:29 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from mel.act-europe.fr (HELO mel.act-europe.fr) (194.98.77.210) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 19 Jan 2012 11:45:16 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id 0334ECB3AC4 for ; Thu, 19 Jan 2012 12:45:16 +0100 (CET) Received: from mel.act-europe.fr ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JgNGLHgRXVZO for ; Thu, 19 Jan 2012 12:45:15 +0100 (CET) Received: from ulanbator.act-europe.fr (ulanbator.act-europe.fr [10.10.1.67]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by mel.act-europe.fr (Postfix) with ESMTP id E6766CB3AC3 for ; Thu, 19 Jan 2012 12:45:15 +0100 (CET) From: Tristan Gingold Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: [Patch/committed]: Explain PEF and XSYM files Date: Thu, 19 Jan 2012 11:45:00 -0000 Message-Id: <8DEEE13C-EBD1-419B-9059-6C913087905C@adacore.com> To: binutils Development Mime-Version: 1.0 (Apple Message framework v1251.1) X-IsSubscribed: yes 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: 2012-01/txt/msg00201.txt.bz2 Hi, I am committing this patch that explains (in a few words) what are the PEF = and XSYM files. Just in case (like me) you were/are wondering. I haven't found any pointers to the now mysterious per xlib format. Tristan. bfd/ 2012-01-19 Tristan Gingold * pef.c: Add a comment. * xsym.c: Likewise. Index: pef.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvs/src/src/bfd/pef.c,v retrieving revision 1.33 diff -c -r1.33 pef.c *** pef.c 11 Jul 2011 15:03:07 -0000 1.33 --- pef.c 19 Jan 2012 11:41:44 -0000 *************** *** 19,24 **** --- 19,28 ---- Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ =20=20 + /* PEF (Preferred Executable Format) is the binary file format for late + classic Mac OS versions (before Darwin). It is supported by both m68k + and PowerPc. It is also called CFM (Code Fragment Manager). */ +=20 #include "sysdep.h" #include "safe-ctype.h" #include "pef.h" Index: xsym.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvs/src/src/bfd/xsym.c,v retrieving revision 1.30 diff -c -r1.30 xsym.c *** xsym.c 11 Jul 2011 15:03:07 -0000 1.30 --- xsym.c 19 Jan 2012 11:41:45 -0000 *************** *** 19,24 **** --- 19,26 ---- Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ =20=20 + /* xSYM is the debugging format used by CodeWarrior on Mac OS classic. */ +=20 #include "alloca-conf.h" #include "sysdep.h" #include "xsym.h"