-
Bug
-
Resolution: Fixed
-
P4
-
8, 9, 10, 11, 12, 13
-
b03
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8243356 | 11.0.8-oracle | Yasumasa Suenaga | P4 | Resolved | Fixed | b04 |
JDK-8244790 | 11.0.8 | Yasumasa Suenaga | P4 | Resolved | Fixed | b03 |
JDK-8265815 | 8u301 | David Buck | P4 | Resolved | Fixed | b03 |
https://mail.openjdk.java.net/pipermail/build-dev/2019-January/024581.html
I tried to build OpenJDK on WSL (Windows 10 1809 + VS2017 (15.9.4) + Ubuntu 18.04 LTS).
However, I saw some C4819 warnings as below:
```
c:/OpenJDK/jdk/src/hotspot/share/compiler/methodMatcher.cpp(258): warning C4819: ファイルは、現在のコード ページ (0) で表示できない文字を含んでいます。データの損失を防ぐために、ファイルを Unicode 形式で保存してください。
```
* The locale of my laptop is set to Japanese (CP932)
I saw this warning at 2 files as below:
- hotspot/share/code/codeHeapState.cpp
- hotspot/share/compiler/methodMatcher.cpp
We can see the problem with iconv:
$ iconv -f US-ASCII -t UTF8 <file>
I tried to build OpenJDK on WSL (Windows 10 1809 + VS2017 (15.9.4) + Ubuntu 18.04 LTS).
However, I saw some C4819 warnings as below:
```
c:/OpenJDK/jdk/src/hotspot/share/compiler/methodMatcher.cpp(258): warning C4819: ファイルは、現在のコード ページ (0) で表示できない文字を含んでいます。データの損失を防ぐために、ファイルを Unicode 形式で保存してください。
```
* The locale of my laptop is set to Japanese (CP932)
I saw this warning at 2 files as below:
- hotspot/share/code/codeHeapState.cpp
- hotspot/share/compiler/methodMatcher.cpp
We can see the problem with iconv:
$ iconv -f US-ASCII -t UTF8 <file>
- backported by
-
JDK-8243356 C4819 warnings at HotSpot sources on Windows
-
- Resolved
-
-
JDK-8244790 C4819 warnings at HotSpot sources on Windows
-
- Resolved
-
-
JDK-8265815 C4819 warnings at HotSpot sources on Windows
-
- Resolved
-
- relates to
-
JDK-8216155 C4819 warning at libfreetype sources on Windows
-
- Resolved
-