delorie.com/archives/browse.cgi | search |
Mailing-List: | contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm |
List-Subscribe: | <mailto:cygwin-subscribe AT sourceware DOT cygnus DOT com> |
List-Archive: | <http://sourceware.cygnus.com/ml/cygwin/> |
List-Post: | <mailto:cygwin AT sourceware DOT cygnus DOT com> |
List-Help: | <mailto:cygwin-help AT sourceware DOT cygnus DOT com>, <http://sourceware.cygnus.com/ml/#faqs> |
Sender: | cygwin-owner AT sourceware DOT cygnus DOT com |
Delivered-To: | mailing list cygwin AT sourceware DOT cygnus DOT com |
Message-ID: | <20000502152335.9635.qmail@web115.yahoomail.com> |
Date: | Tue, 2 May 2000 08:23:35 -0700 (PDT) |
From: | Earnie Boyd <earnie_boyd AT yahoo DOT com> |
Reply-To: | earnie_boyd AT yahoo DOT com |
Subject: | Re: Newbie: libProblem.a |
To: | Bobak Csaba <h531649 AT sirius DOT cab DOT u-szeged DOT hu>, cygwin AT sourceware DOT cygnus DOT com |
MIME-Version: | 1.0 |
--- Bobak Csaba <h531649 AT sirius DOT cab DOT u-szeged DOT hu> wrote: > Hi all! > > After searching the archives I have to ask this: > How do I compile my prg of two libs and an executable if one of the libs > calls functions from the other one? > Simplified case: > > a.c: > ... > int foo_a(int x) > { > return x+1; > } > ... > > b.c: > ... > extern foo_a(int); > ... > int foo_b(int y) > { > return foo_a(y-1); > } > ... > > main.c: > ... > extern foo_b(int); > ... > cout<<foo_b(3); > ... > > What I tried: > gcc -c a.c > ar cq liba.a a.o > ranlib liba.a > gcc -c b.c > ar cq libb.a b.o > ranlib libb.a > gcc -o main main.c -L. -la -lb > > The last command gave an 'undefined' with foo_a > What did I do wrong? > You ordered you libs incorrectly. Since b calls functions in a then you need to `gcc -o main main.c -L. -lb -la'. ===== --- Earnie Boyd: <mailto:earnie_boyd AT yahoo DOT com> __Cygwin: POSIX on Windows__ Cygwin Newbies: <http://www.freeyellow.com/members5/gw32/index.html> __Minimalist GNU for Windows__ Mingw32 List: <http://www.egroups.com/group/mingw32/> Mingw Home: <http://www.mingw.org/> __________________________________________________ Do You Yahoo!? Send instant messages & get email alerts with Yahoo! Messenger. http://im.yahoo.com/ -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |