diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-07-12 14:24:10 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-07-12 14:24:10 -0400 |
commit | a1546e8d61144fdb0f2ac3270250349fa77166f0 (patch) | |
tree | 25bd61cebb648f4d91b992c298939ecd9a4e2997 | |
parent | ba8a96b0689943195cb49e7e4ef0de254532d9e2 (diff) | |
download | musl-a1546e8d61144fdb0f2ac3270250349fa77166f0.tar.gz musl-a1546e8d61144fdb0f2ac3270250349fa77166f0.tar.xz musl-a1546e8d61144fdb0f2ac3270250349fa77166f0.zip |
disable dynamic linking on mips for now (broken)
-rwxr-xr-x | configure | 5 |
1 files changed, 5 insertions, 0 deletions
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... " |