aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@mips.com>2018-02-13 13:01:33 +0000
committerMaciej W. Rozycki <macro@mips.com>2018-02-13 13:01:33 +0000
commit8bc740c41d7ecb13b1fc6be4dd9490412bd560be (patch)
treec039f8ba0740fb66187ed743315b285cfa7ad45e
parent76441deb0c7ffb5c42e29dc8730f31935d780015 (diff)
WebAssembly: Disable subdirectory configuration for unsupported LD
Remove an LD subdirectory configuration error: *** ld does not support target wasm32-unknown-none *** see ld/configure.tgt for supported targets make[1]: *** [configure-ld] Error 1 which prevents binutils for the WebAssembly target from being built unless an explicit `--disable-ld' configuration option has been given. Users must not have to disable features selected by default to get a working configuration. / * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'. * configure: Regenerate. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@257624 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure3
-rw-r--r--configure.ac3
3 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7f2c5431de0..d72c91cfa20 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-02-13 Maciej W. Rozycki <macro@mips.com>
+
+ * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'.
+ * configure: Regenerate.
+
2018-01-18 Boris Kolpackov <boris@codesynthesis.com>
* MAINTAINERS (write after approval): Add myself.
diff --git a/configure b/configure
index 2d615a99965..0601395512f 100755
--- a/configure
+++ b/configure
@@ -3860,6 +3860,9 @@ case "${target}" in
vax-*-*)
noconfigdirs="$noconfigdirs target-newlib target-libgloss"
;;
+ wasm32-*-*)
+ noconfigdirs="$noconfigdirs ld"
+ ;;
esac
# If we aren't building newlib, then don't build libgloss, since libgloss
diff --git a/configure.ac b/configure.ac
index aae94501e48..c3433336523 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1191,6 +1191,9 @@ case "${target}" in
vax-*-*)
noconfigdirs="$noconfigdirs target-newlib target-libgloss"
;;
+ wasm32-*-*)
+ noconfigdirs="$noconfigdirs ld"
+ ;;
esac
# If we aren't building newlib, then don't build libgloss, since libgloss