optimization flag '-falign-functions=8' is not supported in Clang

620 Views Asked by At

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.

0

There are 0 best solutions below