Comment on Can't compile "iwlwifi" module in Linux
yardy_sardley@lemmy.ca 1 year ago
This would normally be a compiler warning, but someone has enabled the -Werror
compiler option (probably in the makefile) which causes the compiler to treat all warnings as errors. You can just remove any -Werror
flags from the makefile and it should compile properly.
nothingness@lemmy.world 1 year ago
will try