Re: Status of insight/gdbtk
Keith Seitz <[email protected]> Wed, 11 Mar 2015 11:01:16 -0700
| Newsgroups | gmane.comp.debugging.insight |
|---|---|
| Message-ID | <[email protected]> |
On 03/11/2015 07:12 AM, Marco Aurélio da Cruz wrote:
> On 03/10/2015 03:48 PM, Keith Seitz wrote:
>> Does your repository have patches/binutils-gdb/003-tclconfig.patch? If
>> so, make sure that all the files were regenerated properly. You can
>> search for "usrlibdir" in gdb/configure to check. If it isn't in
>> there, your configure files were not regenerated to include the fix.
>
> The pach file was correctly applied to "bundle" folder before compiling.
Does /usr/lib64/tclConfig.sh exist? [This is where the file lives on my
Fedora 21 box, which I don't think is any different from Fedora 20.]
When configure complains that "WARNING: Can't find Tcl configuration
definitions," this means that it is unable to locate this file.
The patch I referred to earlier changes configure to look in the
following directories:
${prefix}/lib, /usr/local/lib, /usr/contrib/lib, /usr/lib,
${usrlibdir}, ${usrlibdir}/tcl[[8-9]].[[0-9]], and
${usrlibdir}/tcl[[8-9]].[[0-9]]*
where prefix is given by the configure option "--prefix" and usrlibdir
is computed by configure. ["/usr/lib" on 32-bit architectures,
"/usr/lib32" with "-m32" on 64-bit architectures, and "/usr/lib64" on
64-bit architectures]
tclConfig.sh is supplied by the tcl-devel package on Fedora.
Keith