[rvm-core] Build broken

View: New views
2 Messages — Rating Filter:   Alert me  

[rvm-core] Build broken

by gnu_andrew :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I'm getting the following error:

build-bootloader:
     [exec] /home/andrew/projects/classpath/jikesrvm/tools/bootImageRunner/org_jikesrvm_scheduler_greenthreads_VM_0005fProcess.c:41:65:
error: org_jikesrvm_scheduler_greenthreads_VM_0005fProcess.h: No such
file or directory

on two machines (one x86_64-linux, one ppc64-linux) with a clean checkout.
--
Andrew :-)

Support Free Java!
Contribute to GNU Classpath and the OpenJDK
http://www.gnu.org/software/classpath
http://openjdk.java.net

PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint: F8EF F1EA 401E 2E60 15FA  7927 142C 2591 94EF D9D8

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
Don't miss this year's exciting event. There's still time to save $100.
Use priority code J8TL2D2.
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Jikesrvm-core mailing list
Jikesrvm-core@...
https://lists.sourceforge.net/lists/listinfo/jikesrvm-core

Re: [rvm-core] Build broken

by gnu_andrew :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 20/04/2008, Andrew John Hughes <gnu_andrew@...> wrote:

> I'm getting the following error:
>
>  build-bootloader:
>      [exec] /home/andrew/projects/classpath/jikesrvm/tools/bootImageRunner/org_jikesrvm_scheduler_greenthreads_VM_0005fProcess.c:41:65:
>  error: org_jikesrvm_scheduler_greenthreads_VM_0005fProcess.h: No such
>  file or directory
>
>  on two machines (one x86_64-linux, one ppc64-linux) with a clean checkout.
>  --
>  Andrew :-)
>
>  Support Free Java!
>  Contribute to GNU Classpath and the OpenJDK
>  http://www.gnu.org/software/classpath
>  http://openjdk.java.net
>
>  PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
>  Fingerprint: F8EF F1EA 401E 2E60 15FA  7927 142C 2591 94EF D9D8
>
The attached patch fixed it.  Do the build machines have stale copies
of the header files?
--
Andrew :-)

Support Free Java!
Contribute to GNU Classpath and the OpenJDK
http://www.gnu.org/software/classpath
http://openjdk.java.net

PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint: F8EF F1EA 401E 2E60 15FA  7927 142C 2591 94EF D9D8

[build-01.diff]

Index: build.xml
===================================================================
--- build.xml (revision 14134)
+++ build.xml (working copy)
@@ -1348,6 +1348,7 @@
       <arg line="${rvm.c++.args}"/>
       <arg value="-o"/>
       <arg value="${build.base}/${rvmexec.dll}"/>
+      <arg value="-I${build.native}"/>
       <arg value="${bl.dir}/org_jikesrvm_scheduler_greenthreads_VM_0005fProcess.c"/>
     </exec>
 
@@ -1359,6 +1360,7 @@
       <arg value="${build.base}/${rvmdynlib.dll}"/>
       <arg value="-L${build.base}"/>
       <arg value="-lrvm"/>
+      <arg value="-I${build.native}"/>
       <arg value="${bl.dir}/org_jikesrvm_runtime_VM_0005fDynamicLibrary.c"/>
     </exec>
 
Index: tools/bootImageRunner/org_jikesrvm_scheduler_greenthreads_VM_0005fProcess.c
===================================================================
--- tools/bootImageRunner/org_jikesrvm_scheduler_greenthreads_VM_0005fProcess.c (revision 14134)
+++ tools/bootImageRunner/org_jikesrvm_scheduler_greenthreads_VM_0005fProcess.c (working copy)
@@ -38,7 +38,7 @@
 #include "InterfaceDeclarations.h"
 
 // generated class header
-#include "org_jikesrvm_scheduler_greenthreads_VM_0005fProcess.h"
+#include "org_jikesrvm_scheduler_greenthreads_VM_Process.h"
 
 // local stuff
 
Index: tools/bootImageRunner/org_jikesrvm_runtime_VM_0005fDynamicLibrary.c
===================================================================
--- tools/bootImageRunner/org_jikesrvm_runtime_VM_0005fDynamicLibrary.c (revision 14134)
+++ tools/bootImageRunner/org_jikesrvm_runtime_VM_0005fDynamicLibrary.c (working copy)
@@ -19,7 +19,7 @@
 #include <jni.h>
 
 // generated class header
-#include "org_jikesrvm_runtime_VM_0005fDynamicLibrary.h"
+#include "org_jikesrvm_runtime_VM_DynamicLibrary.h"
 
 extern struct JavaVM_ sysJavaVM;
 


-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
Don't miss this year's exciting event. There's still time to save $100.
Use priority code J8TL2D2.
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Jikesrvm-core mailing list
Jikesrvm-core@...
https://lists.sourceforge.net/lists/listinfo/jikesrvm-core