X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=BAYES_00,SARE_MSGID_LONG40,SPF_PASS X-Spam-Check-By: sourceware.org MIME-Version: 1.0 Date: Sun, 21 Feb 2010 23:59:05 +0300 Message-ID: <4304a5bd1002211259k1f678ac6j29cb170ea535f49b@mail.gmail.com> Subject: Linking Linux static library under Cygwin From: Dmitriy Strebkov To: cygwin AT cygwin DOT com Content-Type: text/plain; charset=ISO-8859-1 Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: 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 My problem is the following. I have a static library libmysqlclient.a, from MySQL version compiled under Linux (mysql-5.0.45-linux-i686-glibc23). Is there any possibility to link that library to an object file complied under Cygwin's GCC? For instance, I have the following code (test.c): #include "mysql.h" #include #include #include ... int main(int argc,char* argv[]) { MYSQL *one, *two; mysql_server_init(argc, argv, server_groups); ... } gcc -c test.c As a result in test.o there is a reference to mysql_server_init() function as "_mysql_server_init", i.e. with '_' as the first symbol. In libmysqlclient.a, where the code of mysql_server_init() function is located, I see a reference to "mysql_server_init" (without '_' symbol). On attempt to link test.o with libmysqlclient.a I get the following error: test.o: undefined reference to '_mysql_server_init' because of problem described above. Linking is initiated by executing such command: gcc -o mian -L. -lmysqlclient main.o Thus, could you please explain me: - Is there any way to link and use Linux libraries under Cygwin at all? - How can I workaround generation of references with '_' as a first symbol in test.o? Thanks in advance! -- 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