mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 13:30:58 +08:00
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. From-SVN: r257624
This commit is contained in:
parent
b607e47420
commit
1fc1d82e96
@ -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.
|
||||
|
3
configure
vendored
3
configure
vendored
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user