Message-ID: <001501be4339$033a45a0$18a46d86@robby.dittmannsdorf.de> From: Robert Hoehne To: djgpp-workers Subject: Re: Is 'Make' loosing selectors ? Date: Mon, 18 Jan 1999 22:19:16 -0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by delorie.com id QAA27423 Reply-To: djgpp-workers AT delorie DOT com > So my question is : > - is it known that GNU make for DJGPP v3.75 looses some selectors >(or should I suspect the programs that I run inside make ?) It is a known bug of W9x. Compile und run the following program and you will understand. #include #include #include int main(int argc, char *argv[]) { int i; if (argc > 1) { fprintf(stderr, "my_cs: %04x\n", _my_cs()); return 0; } for (i=0;i<0xffff;i++) { spawnl(P_WAIT, argv[0], argv[0], "1", NULL); } return 0; }