• Masahiro Yamada's avatar
    kbuild: check the minimum assembler version in Kconfig · ba64beb1
    Masahiro Yamada authored
    Documentation/process/changes.rst defines the minimum assembler version
    (binutils version), but we have never checked it in the build time.
    
    Kbuild never invokes 'as' directly because all assembly files in the
    kernel tree are *.S, hence must be preprocessed. I do not expect
    raw assembly source files (*.s) would be added to the kernel tree.
    
    Therefore, we always use $(CC) as the assembler driver, and commit
    aa824e0c ("kbuild: remove AS variable") removed 'AS'. However,
    we are still interested in the version of the assembler acting behind.
    
    As usual, the --version option prints the version string.
    
      $ as --version | head -n 1
      GNU assembler (GNU Binutils for Ubuntu) 2.35.1
    
    But, we do not have $(AS). So, we can add the -Wa prefix so that
    $(CC) passes --version down to the backing assembler.
    
      $ gcc -Wa,--version | head -n 1
      gcc: fatal error: no input files
      compilation terminated.
    
    OK, we need to input something to satisfy gcc.
    
      $ gcc -Wa,--...
    ba64beb1
Makefile 65.6 KB