mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-21 16:21:00 -05:00
fix gcc LTO (#1562)
I discovered this when trying to run clippy on a crate where a dependency (In my case clippy) has LTO enabled. /usr/lib only has a symlink to to lto plugin which resides in /usr/libexec: https://pkgs.alpinelinux.org/contents?file=liblto_plugin.so&path=&name=gcc&branch=v3.13&repo=main&arch=x86_64 Previously, compilation failed with the following message: = note: cc: fatal error: '-fuse-linker-plugin', but liblto_plugin.so not found compilation terminated. Co-authored-by: Michael Zimmermann <michael.zimmermann@grandcentrix.net>
This commit is contained in:
parent
49eba1b541
commit
866b5af051
1 changed files with 1 additions and 0 deletions
|
@ -371,6 +371,7 @@ COPY --from=base_image /usr/local/bin/ /usr/local/bin/
|
|||
COPY --from=base_image /usr/local/lib/ /usr/local/lib/
|
||||
COPY --from=base_image /usr/local/share/ /usr/local/share/
|
||||
COPY --from=base_image /usr/lib/ /usr/lib/
|
||||
COPY --from=base_image /usr/libexec/ /usr/libexec/
|
||||
COPY --from=base_image /usr/share/ /usr/share/
|
||||
COPY --from=base_image /usr/include/ /usr/include/
|
||||
COPY --from=base_image /lib/ /lib/
|
||||
|
|
Loading…
Reference in a new issue