home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sys.atari.st
- Path: sparky!uunet!mcsun!sun4nl!utrcu1!infnews!infnews!ramaer
- From: ramaer@cs.utwente.nl (Mark Ramaer)
- Subject: Re: C compiler questions.
- Message-ID: <1992Sep1.111306@cs.utwente.nl>
- Keywords: link,sozobon
- Sender: usenet@cs.utwente.nl
- Nntp-Posting-Host: utis143
- Organization: University of Twente, Dept. of Computer Science
- References: <morrison.715326070@ee.ualberta.ca>
- Date: Tue, 1 Sep 1992 09:13:06 GMT
- Lines: 17
-
- In article <morrison.715326070@ee.ualberta.ca>, morrison@ee.ualberta.ca (Robert Morrison) writes:
- ...
- |> Sozobon does not appear to have any provisions for linking in the libraries,
- |> so I have been using this technique:
- |>
- |> > cc prog.c aesfast.a vdifast.a -o prog.prg -v
- |>
- ...
- Rename your libraries to libvdi.a and libaes.a and you
- can link them with "-lvdi -laes" . Cc also adds the $LIB
- path for you.
- You can save more keystrokes if you use ar to unpack both
- aes and vdi into a fresh directory and then create one big
- library libgem.a . However, linking will be slower if you
- need only one of them.
-
- Mark
-