Commit 327eaaf9 by Paul Koning Committed by Paul Koning

target-supports.exp (check_weak_available): Return "no" for pdp11.

	* lib/target-supports.exp (check_weak_available): Return "no" for
	pdp11.

From-SVN: r266297
parent 9012e65b
2018-11-19 Paul Koning <ni1d@arrl.net>
* lib/target-supports.exp (check_weak_available): Return "no" for
pdp11.
2018-11-19 Marek Polacek <polacek@redhat.com> 2018-11-19 Marek Polacek <polacek@redhat.com>
PR c++/87781 - detect invalid elaborated-type-specifier. PR c++/87781 - detect invalid elaborated-type-specifier.
......
...@@ -314,6 +314,12 @@ proc check_weak_available { } { ...@@ -314,6 +314,12 @@ proc check_weak_available { } {
return 1 return 1
} }
# pdp11 doesn't support it
if { [istarget pdp11*-*-*] } {
return 0
}
# ELF and ECOFF support it. a.out does with gas/gld but may also with # ELF and ECOFF support it. a.out does with gas/gld but may also with
# other linkers, so we should try it # other linkers, so we should try it
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment