X-Recipient: archive-cygwin@delorie.com
X-SWARE-Spam-Status: No, hits=-0.9 required=5.0	tests=AWL,BAYES_00,RCVD_NUMERIC_HELO,SPF_HELO_PASS,T_RP_MATCHES_RCVD
X-Spam-Check-By: sourceware.org
To: cygwin@cygwin.com
From: Heiko Elger <heiko_elger@arburg.com>
Subject: "Bad address" error with redirection (stdout and stderr) in background process
Date: Wed, 11 Jan 2012 15:05:26 +0000 (UTC)
Lines: 47
Message-ID: <loom.20120111T154138-434@post.gmane.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
User-Agent: Loom/3.14 (http://gmane.org/)
X-IsSubscribed: yes
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

Hello,

I'm using latest snapshot and updated cygwin installation.

$ uname -a
CYGWIN_NT-6.1-WOW64 PCFX166 1.7.10s(0.259/5/3) 20120111 01:45:50 i686 Cygwin

I've done rebaseall and peflagsall.

I've found the following problem using make in parallel (-j) with multiple 
commands joined with semicolon (;) using cygwin and non-cygwin(cross compiler) 
commands.

# just an example 
test.o: test.c
    echo compile ; cross-gcc -c test.c -o test.o

Having multiple targets like this and using for example 
$ make -j8 |& tee make.log

you will get a "bad address" error.
/bin/sh: cross-gcc.exe: Bad address
makefile:10: recipe for target `test.o' failed

I stripped down the problem to the following testcase:

$ cat ./testcase.sh
#!/bin/sh
(( echo 123 ; cmd /c echo 456 ) |& tee tee.log ) &

executing the testcase will produce thr following output:
$ ./testcase.sh
$ 123
./testcase.sh: line 2: /cygdrive/c/Windows/system32/cmd: Bad address

If only redirecting stdout to tee all works fine.

The problem occurs ony while mixing cygwin and non cygwin programs.

Using snapshot 20110829 all works fine.

Any ideas?

best regards

heiko



--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

