From 9c36105b8fa06543897acd8d86de0737149d519a Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Wed, 19 Jan 2011 16:00:18 -0700 Subject: [PATCH] fix misleading pathnames in bootimage build instructions --- readme.txt | 6 +++--- test/DefineClass.java | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/readme.txt b/readme.txt index f8b7a51e06..32209046f7 100644 --- a/readme.txt +++ b/readme.txt @@ -462,7 +462,7 @@ Step 2: Create a stage1 directory and extract the contents of the class library jar into it. $ mkdir stage1 - $ (cd stage1 && jar xf ../../build/${platform}-${arch}/classpath.jar) + $ (cd stage1 && jar xf ../../build/linux-i386-bootimage/classpath.jar) Step 3: Build the Java code and add it to stage1. @@ -498,10 +498,10 @@ Step 6: Build the boot image. Step 7: Make an object file out of the boot image. - $ ../build/${platform}-${arch}/binaryToObject \ + $ ../build/linux-i386-bootimage/binaryToObject \ bootimage.bin bootimage-bin.o \ _binary_bootimage_bin_start _binary_bootimage_bin_end \ - ${platform} ${arch} 8 writable executable + linux i386 8 writable executable Step 8: Write a driver which starts the VM and runs the desired main method. Note the bootimageBin function, which will be called by the diff --git a/test/DefineClass.java b/test/DefineClass.java index ad98028b91..4e0d8faef7 100644 --- a/test/DefineClass.java +++ b/test/DefineClass.java @@ -50,7 +50,7 @@ public class DefineClass { } public static void main(String[] args) throws Exception { - testStatic(); + //testStatic(); testDerived(); }