This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Crash when accessing App Center or Getting Started Page

Other Parts Discussed in Thread: CCSTUDIO

I have Version: 6.0.0.00190 of Code Composer Studio running on Ubuntu 14.04 64 Bit. Upon clicking View -> App Center or View -> Getting Started. The application crashes without any error/warning window. 

I've attached a few logs, not sure if they'll help. But happy to provide more logs if necessary. 

Thanks,
Krithik 

5164.css_eclipse.log

2248.debug_server.log
0xF75B8700 0 3  COM_DBG_IF C: N11XPCOMLogger8CoLoggerE::OnEnabledChanged()
0xF75B8700 0 3  XPCOM C: ( (dsISimpleEventCallback*)0xbb00e00 )->onEvent()
0xF75B8700 0 3  XPCOM C: ( (dsISimpleEvent*)0xca14c768 )->removeListener( 0xbee4bd8 )
0xF75B8700 0 3  XPCOM R: ( (dsISimpleEvent*)0xca14c768 )->removeListener( 0xbee4bd8 ) = 0x00000000
0xF75B8700 0 3  XPCOM R: ( (dsISimpleEventCallback*)0xbb00e00 )->onEvent() = 0x00000000
0xF75B8700 0 3  COM_DBG_IF R: N11XPCOMLogger8CoLoggerE::OnEnabledChanged()
0xF75B8700 0 3  XPCOM R: ( (dsILogger*)0xca14c738 )->enable( true ) = 0x00000000
0xF75B8700 0 3  XPCOM C: ( (dsISimpleEvent*)0xca14c768 )->addListener( 0xbee4bd8 )
0xF75B8700 0 3  XPCOM R: ( (dsISimpleEvent*)0xca14c768 )->addListener( 0xbee4bd8 ) = 0x00000000
0xF75B8700 0 3  XPCOM C: ( (dsILogger*)0xca14c738 )->getLogFile( 0xffc21e08 )
0xF75B8700 1 3  XPCOM R: ( (dsILogger*)0xca14c738 )->getLogFile( *0xffc21e08 = /home/krithik/Documents/logs/debug_server.log ) = 0x00000000
0xF75B8700 1 3  XPCOM C: ( (dsILogger*)0xca14c738 )->getLogFile( 0xffc21df8 )
0xF75B8700 1 3  XPCOM R: ( (dsILogger*)0xca14c738 )->getLogFile( *0xffc21df8 = /home/krithik/Documents/logs/debug_server.log ) = 0x00000000
0xF75B8700 1 3  XPCOM C: ( (dsILogger*)0xca14c738 )->getLogFile( 0xffc21df8 )
0xF75B8700 1 3  XPCOM R: ( (dsILogger*)0xca14c738 )->getLogFile( *0xffc21df8 = /home/krithik/Documents/logs/debug_server.log ) = 0x00000000
0xF75B8700 1 3  XPCOM C: ( (dsILogger*)0xca14c738 )->getLogFile( 0xffc21df8 )
0xF75B8700 1 3  XPCOM R: ( (dsILogger*)0xca14c738 )->getLogFile( *0xffc21df8 = /home/krithik/Documents/logs/debug_server.log ) = 0x00000000
0xF75B8700 1 3  XPCOM C: ( (dsILogger*)0xca14c738 )->getLogFile( 0xffc21df8 )
0xF75B8700 1 3  XPCOM R: ( (dsILogger*)0xca14c738 )->getLogFile( *0xffc21df8 = /home/krithik/Documents/logs/debug_server.log ) = 0x00000000

  • Thanks for sending the log.  Looks like an issue loading the Chromium (Chrome) browser which the App Center and some other tools use.  Will forward to someone to see if there is a way to configure to use the system browser (firefox) instead.

    John

  • There is an alternate browser that could be used. You would need to open ccstudio.ini file in a text editor located at CCSInstallRoot\ccsv6\eclipse directory and add 

    -DTIBrowserType=swt

    somewhere after -vmargs line. 

    The crash is most likely due to chromium missing libudev.so.0 library. see this link for more information:

    https://github.com/rogerwang/node-webkit/wiki/The-solution-of-lacking-libudev.so.0

    If you wanted to pursue options described on above page, then you would need to install and link "libudev-dev:i386" package. i.e. 32bit version of libudev because CCS is a 32 bit application. 

    Martin

  • Thanks John, Martin. It's fixed now.