- Merge from gdb-7.4.50.20120603-3.fc18.src.rpm. * Wed Jun 6 2012 Jan Kratochvil <jan.kratochvil@redhat.com> - 7.4.50.20120603-3.fc18 - Disable -lmcheck in the development builds. - Fix assertion on some files as glibc-2.15.90-8.fc18 (Doug Evans). * Sun Jun 3 2012 Jan Kratochvil <jan.kratochvil@redhat.com> - 7.4.50.20120603-2.fc18 - Fix Release. - Make yum --enablerepo compatible with at least mock-1.1.21-1.fc16 Rawhide cfg. * Sun Jun 3 2012 Jan Kratochvil <jan.kratochvil@redhat.com> - 7.4.50.20120602-1.fc18 - Rebase to FSF GDB 7.4.50.20120602. - [testsuite] BuildRequire gcc-go. - Drop printing 2D C++ vectors as matrices which no longer worked (BZ 562763). - Fix dejagnu-1.5-4.fc17 compatibility for Go (for BZ 635651). - Use librpm.so.3 for rpm-4.10.0 in Fedora 18. - Revert recent breakage of UNIX objfiles order for symbols lookup. * Sat Jun 2 2012 Jan Kratochvil <jan.kratochvil@redhat.com> - 7.4.50.20120120-48.fc17 - [ppc] Fix hardware watchpoints on PowerPC (BZ 827600, Edjunior Machado). * Mon May 28 2012 Jan Kratochvil <jan.kratochvil@redhat.com> - 7.4.50.20120120-47.fc17 - Workaround PR libc/14166 for inferior calls of strstr. * Mon May 14 2012 Jan Kratochvil <jan.kratochvil@redhat.com> - 7.4.50.20120120-46.fc17 - [RHEL5] Workaround doc build race. * Mon May 14 2012 Jan Kratochvil <jan.kratochvil@redhat.com> - 7.4.50.20120120-45.fc17 - Rename "set auto-load" patchset variable $ddir to $datadir. * Wed May 9 2012 Jan Kratochvil <jan.kratochvil@redhat.com> - 7.4.50.20120120-44.fc17 OBS-URL: https://build.opensuse.org/request/show/125095 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gdb?expand=0&rev=88
43 lines
1.3 KiB
Diff
43 lines
1.3 KiB
Diff
http://sourceware.org/ml/gdb-patches/2012-06/msg00050.html
|
|
Subject: [patch] dejagnu compat. - missing find_go_linker [Re: [patch, doc RFA] Go language support]
|
|
|
|
On Wed, 25 Apr 2012 04:17:35 +0200, Doug Evans wrote:
|
|
> +if {[info procs find_go_linker] == ""} {
|
|
> + rename gdb_find_go find_go
|
|
> + rename gdb_find_go_linker find_go_linker
|
|
> + # No need to set use_gdb_compile.
|
|
> +}
|
|
|
|
Is there a reason for it? With recent Fedora 17 update
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=635651
|
|
|
|
dejagnu has started to support 'find_gfortran'. But it still does not support
|
|
'find_go_linker'. This has resulted in regression failing to compile any
|
|
gdb.go/*.exp files.
|
|
|
|
|
|
Thanks,
|
|
Jan
|
|
|
|
|
|
gdb/testsuite/
|
|
2012-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
* lib/future.exp: Set $use_gdb_compile even if only find_go_linker is
|
|
missing.
|
|
|
|
diff --git a/gdb/testsuite/lib/future.exp b/gdb/testsuite/lib/future.exp
|
|
index 40456c0..bf47988 100644
|
|
--- a/gdb/testsuite/lib/future.exp
|
|
+++ b/gdb/testsuite/lib/future.exp
|
|
@@ -514,7 +514,7 @@ if {[info procs find_gfortran] == ""} {
|
|
if {[info procs find_go_linker] == ""} {
|
|
rename gdb_find_go find_go
|
|
rename gdb_find_go_linker find_go_linker
|
|
- # No need to set use_gdb_compile.
|
|
+ set use_gdb_compile 1
|
|
}
|
|
|
|
if {$use_gdb_compile} {
|
|
|