From: hlu@eecs.wsu.edu (H.J. Lu) Subject: Re: making shared libs Date: 21 Feb 1993 22:30:27 GMT
In article <1m8suiINNt8b@senator-bedfellow.MIT.EDU>, dmuir@athena.mit.edu (Douglas Muir) writes:
|> Well, I see my last post got mangled, so I'll try again. I'm trying to make
|> shared libraries, and I remember that the guys in charge of the shared
|> libraries said that they would be releasing tools and documentation to make
|> shared libraries. My question is, have these tools been released, and if so
Not yet.
|> where can I find them? Thanks.
|> -Doug Muir
|>
|>
|>
Here are some examples:
cd ./libc-linux
make STATIC=true # for static library
make SHARED=true # for shared library
make build SHARED=true # for building libc.so.x.y
make DEBUG=true # for libg.a
make PROFILE=true # for libc_p.a
make LITE=true # for light shared library
make MATH=true SHARED=true # for shared libm.a
make build SHARED=true MATH=true # for building libm.so.x.y
or
make [STATIC=true|SHARED=true] I486=true # for i486
H.J.