While building the CCS project using an external utility, we observed one compilation error. When we added one library path, it showed that 'object files have incompatible byte orderings'.
The compiler adheres to big endianness, whereas the object files in the library adhere to little endianness. Please guide us on how to proceed with this issue.
Just for information, we are able to build the same program containing two libraries with different endianness through CCS. But when we are trying to build the same program through an external utility, it shows the above error.
One more question: Are two libraries with different endianness supported by Complier or not?