Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date: Mon, 3 Sep 2018 23:24:41 +0300
From: John Found <johnfound@...32.info>
To: musl@...ts.openwall.com
Subject: How to use MUSL without installing it?

I am writing a script that to compile musl, then a program with musl, using the latest versions.

I am doing it following way:

mkdir muslsrc
tar --wildcards --strip-components 1 -C ./muslsrc/ -xzf ./musl*.tar.gz
cd muslsrc
ln -s /usr/bin/ar ./i386-ar
ln -s /usr/bin/ranlib ./i386-ranlib
./configure --prefix=../musl --host=i386 CC="gcc -m32 -O3"
make
make install
cd ..

Then I am compiling agains ./musl/ directory.

But after "make" I have all needed files in ./muslsrc/ directory.
Is it possible to use them directly instead of making fake "installation"?

-- 
John Found <johnfound@...32.info>

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.