Hi,
SDK 16.0
Toolset: 3.52
OS: Windows 10
To fix various linker warnings that we were getting when compiling our iOS build using the MacOS command line tools, we had to add an aligned attribute to some statically declare data arrays e.g.
% data_type_definition VertexDataType[] __attribute__((aligned(8))) = { ... }; %
When building the same code using the iOS toolset for Win64, it seems like the linker is not respecting these alignment attributes as we're seeing warnings like:
% ld: warning: pointer not aligned at address 0x1075B758C %
As you can see, the address is *not* aligned to 8 bytes.
One difference in our build processes is that we use *clang++* as our linker program on MacOS but *ld.exe* on Win64. I tried using *clang++.exe* as the linker driver on Win64 but it didn't like options like *-framework* so it seems that's a non-starter.
Is there a way to get the Win64 linker to pick up on this attribute?
Regards,
Graeme