Downgrade riscv64-specific LTO error to a warning
authorjca <jca@openbsd.org>
Fri, 16 Dec 2022 12:06:23 +0000 (12:06 +0000)
committerjca <jca@openbsd.org>
Fri, 16 Dec 2022 12:06:23 +0000 (12:06 +0000)
commit21998d4690adc3ff45ab3a5d54ead3976b1c962e
treeb70f852f309f58d781dce499402c047ead13af36
parentc91c88b18252695d1bd3ff0a558ac8de55d5712c
Downgrade riscv64-specific LTO error to a warning

Error happens when mixing some PIC and non-PIC code in an LTO build/link

  ld: error: linking module flags 'SmallDataLimit': IDs have conflicting values in '<REDACTED>.o' and 'ld-temp.o'

and affects a few ports now.  Issue reported upstream where the proposed
fix uses llvm::Module::Min, which we don't have and would require
a backport.  For now, work around this issue by downgrading to
a warning, which should have the intended effect in most cases (use the
value of the first module, which is smaller than the defaults value used
by ld-temp.o).

ok kettenis@
gnu/llvm/clang/lib/CodeGen/CodeGenModule.cpp