From 5ee19d0d8437975a03c71ab97126f05dde40df64 Mon Sep 17 00:00:00 2001 From: megacz Date: Fri, 30 Jan 2004 06:51:17 +0000 Subject: [PATCH] 2003/02/12 06:25:11 darcs-hash:20040130065117-2ba56-880e5329cfb450486564529c338265b462c55973.gz --- CHANGES | 2 ++ README | 35 +++++------------------------------ 2 files changed, 7 insertions(+), 30 deletions(-) diff --git a/CHANGES b/CHANGES index 28d4058..26ae7a8 100644 --- a/CHANGES +++ b/CHANGES @@ -451,3 +451,5 @@ 06-Feb megacz X11.java: fixed a typo 11-Feb megacz org/bouncycastle/*: upgraded bouncycastle + +11-Feb megacz README: updated gcc instructions and patches diff --git a/README b/README index bca8015..ee0605c 100644 --- a/README +++ b/README @@ -111,8 +111,8 @@ Building latest pre-release of GCC 3.3. You can follow the steps below to create a cross-compiler from linux to Win32. - If the steps below fail, try adding "-D 11-Oct-2002" to the cvs - checkout line; 11-Oct-2002 was the last date on which the compiler + If the steps below fail, try adding "-D 19-Oct-2002" to the cvs + checkout line; 19-Oct-2002 was the last date on which the compiler was known to work. Please don't do this unless you have attempted without it, however, since it puts additional strain on the gcc cvs server. @@ -135,9 +135,9 @@ Building wget http://telia.dl.sourceforge.net/sourceforge/mingw/MinGW-1.1.tar.gz sudo tar -C $PREFIX/i686-pc-mingw32/ -xvzf MinGW-1.1.tar.gz - wget ftp://ftp.gnu.org/gnu/binutils/binutils-2.11.2.tar.gz - tar xzvf binutils-2.11.2.tar.gz - cd binutils-2.11.2 + wget ftp://ftp.gnu.org/gnu/binutils/binutils-2.13.tar.gz + tar xzvf binutils-2.13.tar.gz + cd binutils-2.13 ./configure --target=i686-pc-mingw32 --prefix=$PREFIX make sudo make install @@ -239,31 +239,6 @@ diff -u -r1.3.8.5 win32.h ______________________________________________________________________________ -GC patch - -Index: win32_threads.c -=================================================================== -RCS file: /cvs/gcc/gcc/boehm-gc/win32_threads.c,v -retrieving revision 1.9.2.2 -diff -u -r1.9.2.2 win32_threads.c ---- win32_threads.c 29 Jun 2002 17:29:51 -0000 1.9.2.2 -+++ win32_threads.c 2 Jul 2002 18:10:02 -0000 -@@ -134,10 +134,7 @@ - (LPCONTEXT)&thread_table[i].context)) - ABORT("GetThreadContext failed"); - # ifdef I386 -- if (thread_table[i].context.Esp >= (DWORD)thread_table[i].stack -- || thread_table[i].context.Esp < (DWORD)bottom) -- ABORT("Thread stack pointer out of range"); -- GC_push_one ((word) thread_table[i].context.Edi); -+ GC_push_one ((word) thread_table[i].context.Edi); - GC_push_one ((word) thread_table[i].context.Esi); - GC_push_one ((word) thread_table[i].context.Ebp); - GC_push_one ((word) thread_table[i].context.Ebx); - - - -______________________________________________________________________________ Throwable.printStackTrace() patch Index: Class.h -- 1.7.10.4