We have a library that heavily uses function pointer, where assumed functions are aligned 8 bytes.
In GCC, there is falign-functions
option to specify alignment of functions.
However in Clang, falign-functions=<num>
option seems to be disabled compared to GCC.
Is there any alternative option to achieve this?
Without this feature, our program dies with segmentation fault.