* lib/target-supports.exp (check_effective_target_weak_undefined):
Return 0 on hppa*-*-hpux*.
(check_ascii_locale_available): Likewise.
From-SVN: r269530
+2019-03-09 John David Anglin <dave.anglin@bell.net>
+
+ * lib/target-supports.exp (check_effective_target_weak_undefined):
+ Return 0 on hppa*-*-hpux*.
+ (check_ascii_locale_available): Likewise.
+
2019-03-09 Janus Weil <janus@gcc.gnu.org>
PR fortran/84504
# return 1 if weak undefined symbols are supported.
proc check_effective_target_weak_undefined { } {
+ if { [istarget hppa*-*-hpux*] } {
+ return 0
+ }
return [check_runtime weak_undefined {
extern void foo () __attribute__((weak));
int main (void) { if (foo) return 1; return 0; }
# Return 1 if an ASCII locale is supported on this host, 0 otherwise.
proc check_ascii_locale_available { } {
+ if { [istarget hppa*-*-hpux*] } {
+ return 0
+ }
return 1
}