FULL PRODUCT VERSION :
java version "1.5.0_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_01-b08)
Java HotSpot(TM) Client VM (build 1.5.0_01-b08, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Windows 2000 [Version 5.00.2195]
A DESCRIPTION OF THE PROBLEM :
When running javah on any class with native methods (e.g. java.lang.String),
some lines end with <LF> in stead of the standard Windows <CR><LF>.
The problem is that such a file cannot be checked in in Subversion using
"native" EOL-convention, because this process first checks if the EOL-
convention is consistent.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Compile java.lang.String with javah:
javah java.lang.String
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class java_lang_String */
#ifndef _Included_java_lang_String
#define _Included_java_lang_String
#ifdef __cplusplus
extern "C" {
#endif
#undef java_lang_String_serialVersionUID
#define java_lang_String_serialVersionUID -6849794470754667710i64
/*
* Class: java_lang_String
* Method: intern
* Signature: ()Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_java_lang_String_intern
(JNIEnv *, jobject);
#ifdef __cplusplus
}
#endif
#endif
ACTUAL -
In the following result, "<--" marks the lines where <CR> is missing.
====================== java_lang_String.h ====================
/* DO NOT EDIT THIS FILE - it is machine generated */<--
#include <jni.h>
/* Header for class java_lang_String */<--
<--
#ifndef _Included_java_lang_String<--
#define _Included_java_lang_String
#ifdef __cplusplus<--
extern "C" {<--
#endif
#undef java_lang_String_serialVersionUID<--
#define java_lang_String_serialVersionUID -6849794470754667710i64
/*
* Class: java_lang_String
* Method: intern
* Signature: ()Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_java_lang_String_intern
(JNIEnv *, jobject);<--
#ifdef __cplusplus<--
}<--
#endif
#endif
REPRODUCIBILITY :
This bug can be reproduced always.
CUSTOMER SUBMITTED WORKAROUND :
run dos2unix followed by unix2dos (e.g. from the mingw or cygwin suite)
###@###.### 2005-1-05 19:06:06 GMT
java version "1.5.0_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_01-b08)
Java HotSpot(TM) Client VM (build 1.5.0_01-b08, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Windows 2000 [Version 5.00.2195]
A DESCRIPTION OF THE PROBLEM :
When running javah on any class with native methods (e.g. java.lang.String),
some lines end with <LF> in stead of the standard Windows <CR><LF>.
The problem is that such a file cannot be checked in in Subversion using
"native" EOL-convention, because this process first checks if the EOL-
convention is consistent.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Compile java.lang.String with javah:
javah java.lang.String
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class java_lang_String */
#ifndef _Included_java_lang_String
#define _Included_java_lang_String
#ifdef __cplusplus
extern "C" {
#endif
#undef java_lang_String_serialVersionUID
#define java_lang_String_serialVersionUID -6849794470754667710i64
/*
* Class: java_lang_String
* Method: intern
* Signature: ()Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_java_lang_String_intern
(JNIEnv *, jobject);
#ifdef __cplusplus
}
#endif
#endif
ACTUAL -
In the following result, "<--" marks the lines where <CR> is missing.
====================== java_lang_String.h ====================
/* DO NOT EDIT THIS FILE - it is machine generated */<--
#include <jni.h>
/* Header for class java_lang_String */<--
<--
#ifndef _Included_java_lang_String<--
#define _Included_java_lang_String
#ifdef __cplusplus<--
extern "C" {<--
#endif
#undef java_lang_String_serialVersionUID<--
#define java_lang_String_serialVersionUID -6849794470754667710i64
/*
* Class: java_lang_String
* Method: intern
* Signature: ()Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_java_lang_String_intern
(JNIEnv *, jobject);<--
#ifdef __cplusplus<--
}<--
#endif
#endif
REPRODUCIBILITY :
This bug can be reproduced always.
CUSTOMER SUBMITTED WORKAROUND :
run dos2unix followed by unix2dos (e.g. from the mingw or cygwin suite)
###@###.### 2005-1-05 19:06:06 GMT
- duplicates
-
JDK-6214324 javah on Windows produces files with mixed Windows/UNIX eol-style
-
- Resolved
-