home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / sys / atari / st / 13054 < prev    next >
Encoding:
Text File  |  1992-08-31  |  1.0 KB  |  31 lines

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