libva icon indicating copy to clipboard operation
libva copied to clipboard

va: Fix -Wl,--version-script check with LLD 17

Open vimproved opened this issue 2 years ago • 3 comments

In the upcoming LLD 17 (and previously in LLD 16.0.0, but reverted in 16.0.1), --no-undefined-version is becoming the default behavior. This causes the configure check for --version-scripts support to fail due to the symbols in the version script not being defined, which will cause the version script to not be used, and the build will fail due to --no-undefined-version. This commit adds '-Wl,--undefined-version' to the args of the configure check.

vimproved avatar Jul 20 '23 02:07 vimproved

@vimproved , could you help to address the action issue?

XinfengZhang avatar Sep 13 '23 13:09 XinfengZhang

@vimproved , could you help to address the action issue?

Yes, sorry. I've been meaning to look at this for a while now, since I think this PR is not the best approach.

vimproved avatar Sep 13 '23 14:09 vimproved

Updated this PR with a different method of fixing that should be more correct.

vimproved avatar Oct 02 '23 16:10 vimproved