diff options
author | wolfsuit <wolfsuit@noemail.net> | 2005-03-09 19:40:50 (GMT) |
---|---|---|
committer | wolfsuit <wolfsuit@noemail.net> | 2005-03-09 19:40:50 (GMT) |
commit | e35e9fafd2c5c3f2bf49b21076341e120c2f46cb (patch) | |
tree | 9d44f0e9e176ad5cda43cfb0cf279dfaf1d94da8 /macosx/README | |
parent | 423519f385d5da8f2baee487eab18b7737e15b61 (diff) | |
download | tk-e35e9fafd2c5c3f2bf49b21076341e120c2f46cb.zip tk-e35e9fafd2c5c3f2bf49b21076341e120c2f46cb.tar.gz tk-e35e9fafd2c5c3f2bf49b21076341e120c2f46cb.tar.bz2 |
Add a hack to work around some issues with remote debugging with Xcode. Xcode requires
that stdin & stdout be closed or you won't be able to interrupt the running program. So
I added a check for XCNOSTDIN environment variable in the startup, and I force them
closed if it is set. With that, remote debugging works pretty well.
FossilOrigin-Name: d853b7896529e39eaf824b54ab4cf64a7c9e5eec
Diffstat (limited to 'macosx/README')
-rw-r--r-- | macosx/README | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/macosx/README b/macosx/README index ba58466..39687e0 100644 --- a/macosx/README +++ b/macosx/README @@ -1,7 +1,7 @@ TclTkAqua README ---------------- -RCS: @(#) $Id: README,v 1.10 2004/11/11 01:24:32 das Exp $ +RCS: @(#) $Id: README,v 1.11 2005/03/09 19:40:52 wolfsuit Exp $ This is the README file for the Mac OS X native versions of Tcl & Tk. @@ -131,6 +131,10 @@ name. So, for instance this code will spin the spinner: } This was added in Tk 8.4.2 +- If you want to use Remote Debugging with Xcode 1.5 or 2.0, then you need to set +the environment variable XCNOSTDIN to 1 in the Executable editor for Wish Shell. That +will cause us to force closing stdin & stdout. Otherwise, given how Xcode launches +Wish remotely, they will be left open and then Wish & gdb will fight for stdin... 3. Building TclTkAqua --------------------- |