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-Authentication-Warning: mehen.visi.com: www set sender to mbresnah AT visi DOT com using -f Message-ID: <1048012319.3e77661fae5e5@my.visi.com> Date: Tue, 18 Mar 2003 12:31:59 -0600 From: mbresnah AT visi DOT com To: cygwin AT cygwin DOT com Subject: Re: Building a .exe w/ no cygwin1.dll dependancy... References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) 4.0-cvs X-Originating-IP: 169.155.33.1 Does -mno-cygwin satisfy your needs? See the cygwin user manual. Mike Quoting Tim Renner : > 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/ -- 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/