Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com X-Originating-IP: [192.234.181.70] From: "Tim Renner" To: cygwin AT cygwin DOT com Subject: Building a .exe w/ no cygwin1.dll dependancy... Date: Tue, 18 Mar 2003 12:53:13 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 18 Mar 2003 17:53:14.0004 (UTC) FILETIME=[3F617D40:01C2ED77] Note-from-DJ: This may be spam Does anybody know how to do this? I've tried building my test program a couple different ways g++ -o pipetest pipetest.cc /usr/lib/libcygwin.a g++ -o pipetest pipetest.cc -lcygwin g++ -static -o pipetest pipetest.cc g++ -static -o pipetest pipetest.cc -lcygwin And no matter what, the resulting executable still depends on cygwin1.dll. I would very much prefer not to have to force a completely static build because I would like to allow the loading of shared libraries... I just want the C-runtime library provided by cygwin to be statically linked so there is no dependancy on the .dll. Here's my quick test program if anyone would like to play with it... Thanks, -Tim ----------------------------------------------------------- #include #include int main() { std::string cmd = "ls -l"; FILE* pipe = popen(cmd.c_str(),"r"); do { char buffer[1024]; fgets(buffer, 1024, pipe); cout << "Text: " << buffer << flush; } while (! feof(pipe)); cout << endl; pclose(pipe); return 0; } ----------------------------------------------------------- _________________________________________________________________ Help STOP SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/