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