Skip to content

Commit

Permalink
[PlatformSupport] Tell meson we need a wrapper for i686-linux-musl (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano authored May 3, 2020
1 parent e901578 commit e0c5c5e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ function meson_link_args()

function meson_is_foreign()
{
if [[ "$1" == x86_64-linux-* ]] || [[ "$1" == i686-linux-* ]]; then
# We can't run C++/Fortran executables for i686-linux-musl
if [[ "$1" == x86_64-linux-* ]] || [[ "$1" == i686-linux-gnu ]]; then
echo "false"
else
echo "true"
Expand Down

0 comments on commit e0c5c5e

Please sign in to comment.