Skip to content

Commit

Permalink
Add libmvec.so to accepted dependencies.
Browse files Browse the repository at this point in the history
When putting `MonoGame.Tool.Crunch` together we started
to see an error from the static linking check.

```
Checking: artifacts/crunch
VALID: linux-vdso.so.1
VALID: libstdc++.so.6
VALID: libm.so.6
INVALID: libmvec.so.1
VALID: libgcc_s.so.1
VALID: libc.so.6
VALID: /lib64/ld-linux-x86-64.so.2
```

Lets add this new library to the valid list as it should
be present on most linux systems, since it is part of `glibc`.
  • Loading branch information
dellis1972 committed Aug 15, 2024
1 parent 8f5f4ca commit f52d514
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Tasks/TestLinuxTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ public sealed class TestLinuxTask : FrostingTask<BuildContext>
"libc.so",
"libm.so",
"libdl.so",
"libmvec.so",
"libpthread.so",
"/lib/ld-linux-",
"/lib64/ld-linux-"
Expand Down

0 comments on commit f52d514

Please sign in to comment.