What does “BC break” mean?

Terminology

Terminology Problem Overview


I've found on GitHub term “BC break” – what does it mean?

Terminology Solutions


Solution 1 - Terminology

"BC break" usually means backward compatibility in a general term, but as David Schwartz said it can be interpreted as binary compatibility break in some contexts.

Solution 2 - Terminology

A "BC break" is a binary compatibility break. Nokia documents it pretty well in the compatibility overview. Basically it means that code developed with earlier versions of a compiler, library, or operating system won't work on devices or run times built using a newer version.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionkuboslavView Question on Stackoverflow
Solution 1 - TerminologyAnton BabenkoView Answer on Stackoverflow
Solution 2 - TerminologyDavid SchwartzView Answer on Stackoverflow