[issue21887] Python3 can't detect Tcl/Tk 8.6.1

2014-06-30 Thread Joe Borg

Changes by Joe Borg cyborg101...@gmail.com:


--
title: Python3 can't detect Tcl - Python3 can't detect Tcl/Tk 8.6.1

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue21887
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue21887] Python3 can't detect Tcl/Tk 8.6.1

2014-06-30 Thread Ned Deily

Ned Deily added the comment:

for the --with-tcltk-includes and -libs options, you need to pass the same cc 
options that would go on CFLAGS and LDFLAGS.

  ./configure --help
  [...]
  --with-tcltk-includes='-I...'
  override search for Tcl and Tk include files
  --with-tcltk-libs='-L...'
  override search for Tcl and Tk libs

So your values should likely look something like:

  --with-tcltk-includes=-I/scratch/root/include
  --with-tcltk-libs=-L/scratch/root/lib -ltcl8.6 -ltk8.6

--
nosy: +ned.deily
resolution:  - works for me
stage:  - resolved
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue21887
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com