We have an embedded project which is successfully build on Windows. To integrate it with our Build Server it is required to be build on Linux as well.
I have parsed the .bat build script from windows to Linux inspired from this post (https://sysprogs.com/w/forums/topic/build-project-on-linux/).
Unfortunately the output wasn’t binary equal to the original build on the windows computer.
On linux I am using the last GNU ARM Embedded Toolchain 10.3-21.10 (which is now deprecated). This toolchain is used instead of the normal GCC compiler as the .bat script generated by VisualGDB uses arm-none-eabi-gcc and arm-none-eabi-g++, which takes flags the normal GCC compiler doesn’t. On Windows I am using VisualGDB 6 and MsBuild
What can I do to get the excact same build on the Linux?
Best Regards Nikolaj