From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=BAYES_00,INVALID_MSGID, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6ed4471f2a4d8a45 X-Google-Attributes: gid103376,public From: bruns@tetibm2.ee.TU-Berlin.DE (Warner Bruns) Subject: dumb question: how to "apply a patch" that is needed for GNAT Date: 1998/07/31 Message-ID: <6ptksf$qlp$1@mamenchi.zrz.TU-Berlin.DE>#1/1 X-Deja-AN: 376829290 Distribution: world References: <6pt3cl$n3r@hacgate2.hac.com> <35C1DAB1.3035002F@lmco.com> <6pt01p$is$1@nnrp1.dejanews.com> Organization: Technical University Berlin, Germany Reply-To: bruns@tetibm2.ee.TU-Berlin.DE (Warner Bruns) Newsgroups: comp.lang.ada Date: 1998-07-31T00:00:00+00:00 List-Id: I am just trying to install GLADE for GNAT 3.10p on my RS-6000 running AIX 3.2. Since I could not find a binary distribution of GNAT for this old machine, I am trying to install GNAT 3.10p by bootstraping. I have installed a binary version of GNAT 3.05 and now try to compile GNAT 3.07 (the oldest source distribution I could find) gnat 3.07 says I need GCC 2.7.2 --- I got the sources of gcc 2.7.2 gnat 3.07 says I have to apply some patches to the sources of gcc 2.7.2 Citation of gnat's README: " -- Apply patches (gcc-272.dif) from the src directory. " The file "gcc-272.dif" and has a content like: *** cse.old Thu Nov 16 15:49:11 1995 --- cse.c Sun Nov 26 22:37:16 1995 *************** cse_basic_block (from, to, next_branch, *** 8405,8408 **** --- 8405,8409 ---- int to_usage = 0; int in_libcall_block = 0; + int num_insns = 0; /* Each of these arrays is undefined before max_reg, so only allocate *************** cse_basic_block (from, to, next_branch, and so on ........ It looks to me as if I have to start some program with some options to apply these "patches" but what program? and what options? ????? What do I do with this File ?????