You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
@vincentbernat pointed out that Ubuntu kernels are built with -fno-inline-functions-called-once
I think this compiler argument is coming out of the source package's debian/rules.d/0-common-vars.mk file. Both Trusty and Xenial setup kmake the same way:
Where manually turning on CONFIG_DEBUG_SECTION_MISMATCH will in turn add -fno-inline-functions-called-once to the kernel build line.
Note that the only code that uses PKG_ABI (in Trusty's 3.13.0-119-generic at least) is driver/hv/hv.c to generate a unique "guest_id" for the hyperv driver. (The PKG_ABI number corresponds to the xyz-generic value in the kernel package name.)
The text was updated successfully, but these errors were encountered:
@vincentbernat pointed out that Ubuntu kernels are built with -fno-inline-functions-called-once
I think this compiler argument is coming out of the source package's
debian/rules.d/0-common-vars.mkfile. Both Trusty and Xenial setupkmakethe same way:Where manually turning on
CONFIG_DEBUG_SECTION_MISMATCHwill in turn add-fno-inline-functions-called-onceto the kernel build line.Note that the only code that uses
PKG_ABI(in Trusty's 3.13.0-119-generic at least) is driver/hv/hv.c to generate a unique "guest_id" for the hyperv driver. (ThePKG_ABInumber corresponds to the xyz-generic value in the kernel package name.)The text was updated successfully, but these errors were encountered: