From: Rich Felker Date: Thu, 12 Jul 2012 18:24:10 +0000 (-0400) Subject: disable dynamic linking on mips for now (broken) X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=a1546e8d61144fdb0f2ac3270250349fa77166f0;hp=ba8a96b0689943195cb49e7e4ef0de254532d9e2;p=musl disable dynamic linking on mips for now (broken) --- diff --git a/configure b/configure index 69ca21f5..6daa5b36 100755 --- a/configure +++ b/configure @@ -275,6 +275,11 @@ printf "warning: disabling dynamic linking support\n" shared=no } +test "$ARCH" = "mips" && { +printf "warning: disabling dynamic linking support on mips (not yet supported)\n" +shared=no +} + printf "creating config.mak... "