Open GoogleCodeExporter opened 9 years ago
Looking at InitializeICU in icu_util.cc
https://chromium.googlesource.com/chromium/src/base/+/refs/heads/master/i18n/icu
_util.cc
The code uses the module_dir on Windows only. On Mac, it uses different logic.
And this doesn't seem to be controllable by a property.
Original comment by christop...@gmail.com
on 18 Aug 2014 at 2:11
Issue 110 has been merged into this issue.
Original comment by magreenb...@gmail.com
on 20 Aug 2014 at 3:10
Original comment by magreenb...@gmail.com
on 20 Aug 2014 at 3:11
Hi,
How are you launching the app using Java at command line. I am not much familiar with MAC env. I have it working in Linux. But on MAC I am not able to get the app to come up using "Java" at command line. The "JCEF_app" does work.
Original comment by anth...@gmail.com
on 29 Aug 2014 at 4:38
Anth: I'm away from the mac I use for the next few days so i can't paste you
the exact command line until then. It's pretty similar to Linux except the
native libs and jars are in different folders. Yes the "JCEF_app" works, the pb
is for those running without their own custom bundled app such as
java/javaw/javaws. Maybe someone else will reply to you before I get back to
you...
Original comment by christop...@gmail.com
on 29 Aug 2014 at 11:01
Hi Christopher,
That's not an issue. Please post it when you get a chance. I tried various options. Since the xcode also tries to hardcode the path to different libraries it becomes a bit contrived to get the command line working. I tried to change the PATH references of the built libraries to make it simpler also. I still couldn't get it to work.
Original comment by anth...@gmail.com
on 31 Aug 2014 at 6:33
Hi Christopher,
If you have access to your MAC, can you please post the command line?
Original comment by anth...@gmail.com
on 8 Sep 2014 at 12:53
Hi Anth: here it is. It's very similar to the command line on Windows (run.bat).
Open console
Go to directory that contains jcef_app.app (e.g.
<...>/jcef/src/xcodebuild/Release/
java -cp "./jcef_app.app/Contents/Java/*"
-Djava.library.path=./jcef_app.app/Contents/Java tests.detailed.MainFrame
This works fine with revision92. With revision99, this fails with the following
output:
java -cp "./jcef_app.app/Contents/Java/*"
-Djava.library.path=./jcef_app.app/Contents/Java tests.detailed.MainFrame
Offscreen rendering disabled
Using:
JCEF Version = 3.1916.1749.99
CEF Version = 3.1916.1749
Chromium Version = 35.0.1916.138
initialize on Thread[AWT-EventQueue-0,6,main] with library path
./jcef_app.app/Contents/Java
Added scheme search://
Added scheme client://
[0909/090956:FATAL:content_main_runner.cc(751)] Check failed:
base::i18n::InitializeICU().
Trace/BPT trap: 5
Original comment by christop...@gmail.com
on 9 Sep 2014 at 1:11
Thanks. That works.
Original comment by anth...@gmail.com
on 9 Sep 2014 at 2:58
> Thanks. That works.
Hi Anth... I'm suspended on your last words... Were you working on a Chromium
patch to make the loading of icudtl.dat more flexible?
Original comment by christop...@gmail.com
on 23 Sep 2014 at 3:20
No. I was not able to get the MAC command line working. Your suggestion helped.
I was trying to change the library paths using install_name_tool to change the
directory structure to launch the app, as I wanted to customize the structure.
But I couldn't get the Java command line working correctly.
I had the same problem in Linux and your issue report helped to work around
that issue there.
Your suggestion helped getting it working on MAC.
Also, icudtl.dat may be part of the CEF issue. There were some people
complaining about it had to be in the directory where the binary
(CEFClient.exe) is located.
I have not found alternative yet.
Original comment by anth...@gmail.com
on 23 Sep 2014 at 4:17
I'm afraid there's no alternative but to modify the code in
https://chromium.googlesource.com/chromium/src/base/+/refs/heads/master/i18n/icu
_util.cc . Unfortunately it's not in JCEF or CEF, it's in Chromium.
Original comment by christop...@gmail.com
on 23 Sep 2014 at 4:45
Original issue reported on code.google.com by
christop...@gmail.com
on 15 Aug 2014 at 6:35