Postgresql uses --stack= in it's Makefile.
Downstream issue: https://github.com/msys2/MINGW-packages/pull/9167
Differential D107237
[LLD][MinGW] Accept joined format for --stack mati865 on Aug 1 2021, 4:47 AM. Authored by
Details
Postgresql uses --stack= in it's Makefile. Downstream issue: https://github.com/msys2/MINGW-packages/pull/9167
Diff Detail
Event TimelineComment Actions LGTM, thanks! From a quick look at the options listing, I presume most other cases of S<> and J<…=> should be changed into Eq<> too. Comment Actions
It's very likely but I don't know how to easily check it with BFD and I think this was the only problematic flag recently. Comment Actions Yes, that shows that lld doesn't support that form of that option - the question is whether ld.bfd supports that form of that particular option (I would assume it does as it uses getopt iirc). Other than those two, there's also --major-image-version/--minor-image-version (which lld currently just ignores), and -mllvm (which only has correspondence in the lld ELF backend, where it supports both option forms), and --icf (which only is supported in the --icf=<foo> form currently. Additionally the option definitions of plugin and plugin-opt could be simplified. Comment Actions Oh, ok, so those would be more low hanging fruit to fix by doing the same for that option. |