|
|
|
|
|
by superbatfish
1379 days ago
|
|
If you are willing to accept the various caveats that come with -ffast-math for your own library, then it looks like it's okay to use -ffast-math during compilation, but not during linking (because it links in crtfastmath.so, as the author points out). Your own compiled library functions will use the optimizations, but won't force the weird FPU register modes on the rest of the process. |
|