mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Add note about linker errors for Fedora users (#2009)
This PR adds a note to the Fedora section of Linux Dependencies on solving linker errors. Fixes #1815. Co-authored-by: James Leflang <59455417+jleflang@users.noreply.github.com>
This commit is contained in:
parent
723fe91183
commit
cc0ee536f0
1 changed files with 17 additions and 0 deletions
|
@ -26,6 +26,23 @@ Please see the ubuntu [WSL documentation](https://wiki.ubuntu.com/WSL) on how to
|
|||
sudo dnf install gcc-c++ libX11-devel alsa-lib-devel systemd-devel
|
||||
```
|
||||
|
||||
If there are errors with linking during the build process such as:
|
||||
|
||||
```bash
|
||||
= note: /usr/bin/ld: skipping incompatible /usr/lib/libasound.so when searching for -lasound
|
||||
/usr/bin/ld: skipping incompatible /usr/lib/libasound.so when searching for -lasound
|
||||
/usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-redhat-linux/10/../../../libasound.so when searching for -lasound
|
||||
/usr/bin/ld: skipping incompatible /lib/libasound.so when searching for -lasound
|
||||
/usr/bin/ld: skipping incompatible /usr/lib/libasound.so when searching for -lasound
|
||||
/usr/bin/ld: cannot find -lasound
|
||||
```
|
||||
|
||||
Add your arch to the end of the package to remove the linker error. For example:
|
||||
|
||||
```bash
|
||||
sudo dnf install alsa-lib-devel.x86_64
|
||||
```
|
||||
|
||||
## Arch / Manjaro
|
||||
|
||||
```bash
|
||||
|
|
Loading…
Reference in a new issue