Disable PIC where possible
Disable -fPIC flag for executables and static libraries used only by executables. -fPIC seems to get in the way of some optimisations. One example would be `with_skip_flags`, which is not inlined in `hive::chain::database::apply_transaction` function. Disabling that flag makes the function inlined properly.
Loading
Please sign in to comment