Lubuntu 14.04 64bit libwebkit Topic is solved

If you have a simple question and just want an answer.
slonotop
New User
Posts: 2
Joined: Wed Nov 19, 2014 9:59 pm

Lubuntu 14.04 64bit libwebkit

Post by slonotop »

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x00007f97363b80a0, pid=23754, tid=140290129045248
#
# JRE version: Java(TM) SE Runtime Environment (8.0_25-b17) (build 1.8.0_25-b17)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.25-b02 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C  [libwebkit-1.0.so.2+0xb0c0a0]
#
# Core dump written. Default location: /home/slon/xmos/XMOS/xTIMEcomposer/Community_13.2.0/core or core.23754
#
# An error report file with more information is saved as:
# /home/slon/xmos/XMOS/xTIMEcomposer/Community_13.2.0/hs_err_pid23754.log
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.sun.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

and
-Dcom.xmos.cdt.disableMozillaBrowserCreation=true
-Dcom.xmos.cdt.disableDefaultBrowserCreation=true

Does not Help :-(

 

View Solution
User avatar
sethu_jangala
XCore Expert
Posts: 589
Joined: Wed Feb 29, 2012 10:03 am

Post by sethu_jangala »

Check if the answer to the following question solves your issue:

http://www.xcore.com/questions/2480/xti ... -ubuntu-14...

 

slonotop
New User
Posts: 2
Joined: Wed Nov 19, 2014 9:59 pm

Post by slonotop »

I tryed already the second solution but it dident hell.

User avatar
kris
Experienced Member
Posts: 84
Joined: Mon Jan 18, 2010 2:52 pm

Post by kris »

This is a known issue with the 13.2.0 tools on ubuntu 14.04, i.e. there are compatibility issues with the supplied version of webkit. This will be fixed in the upcoming tools release. However, in the meatime you have 2 options:

1) Change to use a different version of libwebkit. Grab webkitgtk-1.2.3-1.el6.x86_64.rpm (This can be found here: http://rpm.pbone.net/index.php3/stat/4/ ... tific_linu...). Extract libwebkit-1.0.so.2 from this rpm (this can be done using the rpm2cpio/cpio tools) and copy it to the xtimecomposer_bin/swtbrowserlibs directory.

2) Disable the developer column. This can be done by settting the properties in the 'bin/xtimecomposer' wrapper script. e.g. 

} elsif (isLsbRelease("Ubuntu")) {
    .....
    if ($ubuntuVersion <= 12.04) {
       ...
 
    } elsif ($ubuntuVersion >= 12.10 and $ubuntuVersion <= 13.10) {
        ....
 
    } else {        
        $vmargs .= "-vmargs";
        $vmargs .= " -Dcom.xmos.cdt.disableMozillaBrowserCreation=True";
        $vmargs .= " -Dcom.xmos.cdt.disableDefaultBrowserCreation=True";
    }
....
 
Hope this helps,
  Cheers,
      Kris.