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: MacOS CCS cannot be use.

Other Parts Discussed in Thread: CCSTUDIO

Tool/software: Code Composer Studio

Hi Team,

MacOS CCS cannot be use. Please check picture. My CCS version is 7.3 or 6.

.

  • Alvin,

    What is your MacOS version?

    Regards,
    John
  • I think this is an issue with Eclipse and High Sierra (10.13) when something other than English is the default language. I found some references to this online.

    Go into the ccstudio.app package, then to the “Contents” folder. Find the Info.plist file. This will need to be edited. Look for the list of locales and remove everything from that list except for the “en” entry.

    Save.

    Restart CCS.

    I am not able to see this issue on my Mac but from what I have read this should fix the issue.

    Regards,
    John
  • Thank you John, it does work!

    Just as what you have pointed, CCS was installed on MacOs(High Sierra, Ver. 10.13) with default language set for Chinese. I modified the Info.plist file following your instruction, the problem has been resolved.

    Info.plist file before modifiedL

    .......

    <key>CFBundleLocalizations</key>
    <array>
    <string>ar</string>
    <string>cs</string>
    <string>da</string>
    <string>el</string>
    <string>en</string>
    <string>es</string>
    <string>de</string>
    <string>fi</string>
    <string>fr</string>
    <string>hu</string>
    <string>it</string>
    <string>iw</string>
    <string>ja</string>
    <string>ko</string>
    <string>nl</string>
    <string>no</string>
    <string>pl</string>
    <string>pt_BR</string>
    <string>pt</string>
    <string>ru</string>
    <string>sv</string>
    <string>tr</string>
    <string>zh_HK</string>
    <string>zh_TW</string>
    <string>zh</string>
    </array>

    ..........

    After modified:

    ...........

    <key>CFBundleLocalizations</key>
    <array>
    <string>en</string>
    </array>

    ...........

    And the CCS behaves normally:

  • Great!

    Looks like Eclipse has a workaround for this in the 4.7.1 release of Eclipse. We will be picking that up in CCSv8.0 but it won't be until next year.

    Regards,
    John