mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2026-08-27 00:26:02 -04:00
AMDGCN: Disable subdirectory configuration for unsupported GAS and LD
The `amdgcn' target is not supported by GAS or LD, so disable building in the respective subdirectories, removing configuration errors such as: This target is no longer supported in gas make[1]: *** [Makefile:5473: configure-gas] Error 1 and: *** ld does not support target amdgcn-unknown-none *** see ld/configure.tgt for supported targets make[1]: *** [Makefile:6968: configure-ld] Error 1 in builds where no explicit `--disable-gas' and `--disable-ld' options have been used with the top-level `configure' script. Users must not have to disable features selected by default to get a working configuration. / * configure.ac <amdgcn-*-*> (noconfigdirs): Add `ld' and `gas'. * configure: Regenerate.
This commit is contained in:
parent
a5b91b3325
commit
58d798318c
2 changed files with 2 additions and 0 deletions
1
configure
vendored
1
configure
vendored
|
|
@ -3939,6 +3939,7 @@ case "${target}" in
|
|||
noconfigdirs="$noconfigdirs sim target-rda"
|
||||
;;
|
||||
amdgcn*-*-*)
|
||||
noconfigdirs="$noconfigdirs ld gas"
|
||||
;;
|
||||
arm-*-darwin*)
|
||||
noconfigdirs="$noconfigdirs ld gas gdb gprof"
|
||||
|
|
|
|||
|
|
@ -1108,6 +1108,7 @@ case "${target}" in
|
|||
noconfigdirs="$noconfigdirs sim target-rda"
|
||||
;;
|
||||
amdgcn*-*-*)
|
||||
noconfigdirs="$noconfigdirs ld gas"
|
||||
;;
|
||||
arm-*-darwin*)
|
||||
noconfigdirs="$noconfigdirs ld gas gdb gprof"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue