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.

CCS 6.1.3.00034 Installation on openSUSE 13.2 (32/64-bit) - Browser-dependent Issues

I thought I would report some issues I encountered when installing CCS 6.1.3.00034 on openSUSE 13.2 (both 32- and 64-bit) as well as solutions I was able to apply to resolve them.

Although I had no issues installing CCS in openSUSE 13.2 64-bit initially, subsequent executions of the application did not have a functional App Center or any chromium browser-dependent functionality.  In the case of App Center, only a blank screen was displayed.

The following command

ldd -v -d -r ~/ti/ccsv6/eclipse/plugins/com.ti.chromium.browser.gtk.linux.x86_1.0.0.201604131600/libs/*.so > ldd.txt

showed that the following libraries were not found in 64-bit openSUSE 13.2:

libnss3.so

libnssutil3.so

libsmime3.so

libplc4.so

libnspr4.so

libudev.so.0

libgcrypt.so.11 version 'GCRYPT_1.2'

libnss3.so was installed in the 64-bit version of mozilla-nss, but the 32-bit version of the library (mozilla-nss-32bit) was not installed. Installing mozilla-nss-32bit installed all the missing libraries except libudev.so.0 and libgrcrypt.so.11.

The following link has a discussion about creating a link from the installed libudev.so.1 in libudev1-32bit to the missing libudev.so.0:

https://e2e.ti.com/support/development_tools/code_composer_studio/f/81/t/349185

I used the following command to create the link:

sudo ln -s /usr/lib/libudev.so.1 /usr/lib/libudev.so.0

This resolved the “libudev.so.0 not found” issue.

The libgcrypt20-32bit library was installed, but the file list only included libgcrypt.so.20 and libgcrypt.so.20.0.1. I attempted to create a link from libgcrypt.so.20 to libgcrypt.so.11 with the following command:

sudo ln -s /usr/lib/libgcrypt.so.20 /usr/lib/libgcrypt.so.11

but then discovered that the link already existed. After some research, I then installed libgcrypt11 from the 32-bit link for openSUSE 13.1 (libgcrypt11-1.5.4-2.12.1.i586.rpm) at this URL:

https://software.opensuse.org/package/libgcrypt11

After this, CCS App Center and Getting Started displayed and functioned properly.

It was necessary to install the above 32-bit libgcrypt11 in 32-bit openSUSE 13.2 as well in order to get CCS App Center and Getting Started to function properly. Even with this fix, the App Center “blacks out” unpredictably sometimes with mouse movement for some reason as if there is some graphics driver issue with the GeForce 210 card on the particular system I am using.  However, I am able to install add-ons and software as needed.