[all-commits] [llvm/llvm-project] f8de9a: [llvm-rc] Add a GNU windres-like frontend to llvm-rc

Martin Storsjö via All-commits all-commits at lists.llvm.org
Mon Apr 26 12:06:28 PDT 2021


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: f8de9aaef2f472ad7572748582444083d31d5a95
      https://github.com/llvm/llvm-project/commit/f8de9aaef2f472ad7572748582444083d31d5a95
  Author: Martin Storsjö <martin at martin.st>
  Date:   2021-04-26 (Mon, 26 Apr 2021)

  Changed paths:
    M clang/test/CMakeLists.txt
    A clang/test/Preprocessor/Inputs/llvm-windres.h
    A clang/test/Preprocessor/llvm-windres.rc
    M llvm/test/CMakeLists.txt
    M llvm/test/lit.cfg.py
    M llvm/test/tools/llvm-rc/codepage.test
    M llvm/test/tools/llvm-rc/language.test
    A llvm/test/tools/llvm-rc/windres-format.test
    A llvm/test/tools/llvm-rc/windres-prefix.test
    A llvm/test/tools/llvm-rc/windres-preproc.test
    A llvm/test/tools/llvm-rc/windres-target.test
    A llvm/test/tools/llvm-rc/windres-version.test
    M llvm/tools/llvm-rc/CMakeLists.txt
    A llvm/tools/llvm-rc/WindresOpts.td
    M llvm/tools/llvm-rc/llvm-rc.cpp

  Log Message:
  -----------
  [llvm-rc] Add a GNU windres-like frontend to llvm-rc

This primarily parses a different set of options and invokes the same
resource compiler as llvm-rc normally. Additionally, it can convert
directly to an object file (which in MSVC style setups is done with the
separate cvtres tool, or by the linker).

(GNU windres also supports other conversions; from coff object file back
to .res, and from .res or object file back to .rc form; that's not yet
implemented.)

The other bigger complication lies in being able to imply or pass the
intended target triple, to let clang find the corresponding mingw sysroot
for finding include files, and for specifying the default output object
machine format.

It can be implied from the tool triple prefix, like
`<triple>-[llvm-]windres` or picked up from the windres option e.g.
`-F pe-x86-64`. In GNU windres, that option takes BFD style format names
such as pe-i386 or pe-x86-64. As libbfd in binutils doesn't support
Windows on ARM, there's no such canonical name for the ARM targets.
Therefore, as an LLVM specific extension, this option is extended to
allow passing full triples, too.

Differential Revision: https://reviews.llvm.org/D100756




More information about the All-commits mailing list