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.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 7, 2021. It is now read-only.
Since torvalds/linux@cdd750b, the __c_flags variable used by kernel-cflags-helper is gone, and we should just use _c_flags. Probably the right thing to do is use __c_flags if it exists and fall back to _c_flags, for correctness with older kernels. (You can also do version comparisons with like, $(shell expr) or something but that sounds like a pain.)
Maybe it's worth seeing if there's a cleaner way of doing all this.
Since torvalds/linux@cdd750b, the
__c_flags
variable used by kernel-cflags-helper is gone, and we should just use_c_flags
. Probably the right thing to do is use__c_flags
if it exists and fall back to_c_flags
, for correctness with older kernels. (You can also do version comparisons with like,$(shell expr)
or something but that sounds like a pain.)Maybe it's worth seeing if there's a cleaner way of doing all this.
Originally reported in lizhuohua/linux-kernel-module-rust#1.
The text was updated successfully, but these errors were encountered: