home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / unix / aix / 8800 < prev    next >
Encoding:
Text File  |  1992-08-13  |  1.2 KB  |  30 lines

  1. Newsgroups: comp.unix.aix
  2. Path: sparky!uunet!newsgate.watson.ibm.com!yktnews!admin!yktnews!prener
  3. From: prener@watson.ibm.com (Dan Prener)
  4. Subject: Re: Can I build static executables under AIX 3.2 ?
  5. Sender: news@watson.ibm.com (NNTP News Poster)
  6. Message-ID: <PRENER.92Aug13210441@prener.watson.ibm.com>
  7. In-Reply-To: e-sink@uiuc.edu's message of Thu, 13 Aug 1992 14:25:59 GMT
  8. Date: Fri, 14 Aug 1992 02:04:41 GMT
  9. Disclaimer: This posting represents the poster's views, not necessarily those of IBM
  10. References: <BsxErE.H9r@news.cso.uiuc.edu>
  11. Nntp-Posting-Host: prener.watson.ibm.com
  12. Organization: IBM T.J. Watson Research Center, Hawthorne, New York
  13. Lines: 15
  14.  
  15. In article <BsxErE.H9r@news.cso.uiuc.edu> e-sink@uiuc.edu (Eric W. Sink) writes:
  16.  
  17. >How do I build an app which does NOT use shared libraries ?
  18.  
  19. Link with the (additional) options
  20.  
  21.         -bnso -bI:/lib/syscalls.exp
  22.  
  23. The first, "nso", means "no shared objects", i.e., link in a private
  24. copy of normally shared libraries.  The second "I:..." explicitly 
  25. imports the list of system calls in the named file, to make up for
  26. the fact that these are normally made available by virtue of being
  27. imported by the shared libc.
  28. --
  29.                                    Dan Prener (prener@watson.ibm.com)
  30.