[llvm-commits] CVS: llvm-java/runtime/Makefile runtime.c
Reid Spencer
reid at x10sys.com
Sat Jan 15 19:01:33 PST 2005
Changes in directory llvm-java/runtime:
Makefile updated: 1.5 -> 1.6
runtime.c updated: 1.15 -> 1.16
---
Log message:
Fix the makefile, not the code!
---
Diffs of the changes: (+4 -4)
Index: llvm-java/runtime/Makefile
diff -u llvm-java/runtime/Makefile:1.5 llvm-java/runtime/Makefile:1.6
--- llvm-java/runtime/Makefile:1.5 Wed Nov 24 13:44:53 2004
+++ llvm-java/runtime/Makefile Sat Jan 15 21:01:22 2005
@@ -8,7 +8,7 @@
##===----------------------------------------------------------------------===##
LEVEL := ..
-CPPFLAGS+=-I$(BUILD_SRC_ROOT)/include/llvm/Java
+CPPFLAGS+=-I$(PROJ_SRC_ROOT)/include/llvm/Java
BYTECODE_LIBRARY=1
LIBRARYNAME=jrt
Index: llvm-java/runtime/runtime.c
diff -u llvm-java/runtime/runtime.c:1.15 llvm-java/runtime/runtime.c:1.16
--- llvm-java/runtime/runtime.c:1.15 Sat Jan 15 20:21:42 2005
+++ llvm-java/runtime/runtime.c Sat Jan 15 21:01:22 2005
@@ -78,7 +78,7 @@
jint length; \
j##TYPE data[0]; \
};
-#include "llvm/Java/types.def"
+#include "types.def"
static jint llvm_java_get_array_length(JNIEnv* env, jarray array) {
return ((struct llvm_java_booleanarray*) array)->length;
@@ -93,7 +93,7 @@
*isCopy = JNI_FALSE; \
return ((struct llvm_java_ ##TYPE## array*) array)->data; \
}
-#include "llvm/Java/types.def"
+#include "types.def"
#define HANDLE_TYPE(TYPE) \
static void llvm_java_release_ ##TYPE## _array_elements( \
@@ -110,7 +110,7 @@
abort(); \
} \
}
-#include "llvm/Java/types.def"
+#include "types.def"
/* The JNI interface definition */
static const struct JNINativeInterface llvm_java_JNINativeInterface = {
More information about the llvm-commits
mailing list