Re: What does -no-fast-install libtool option do?

2018-03-26 Thread Basin Ilya
Ok, can libtool create both binaries at build stage, the debug one instead of the wrapper script and the installable one in .libs/program? 26.03.2018 20:46, Simon Richter пишет: > Hi, > > On 26.03.2018 18:57, Basin Ilya wrote: > >> The expected drawback is a slower `make install`, but I'm fine

Re: What does -no-fast-install libtool option do?

2018-03-26 Thread Simon Richter
Hi, On 26.03.2018 18:57, Basin Ilya wrote: > The expected drawback is a slower `make install`, but I'm fine with it. That doesn't work for most use cases, where the build is running as an user, while "make install" runs as root. "make install" should not write anything to the build tree, because

What does -no-fast-install libtool option do?

2018-03-26 Thread Basin Ilya
I seek a mode in which libtool would use no wrapper scripts and do the following: - `make all` would create a binary with the debug rpath, just like the `-no-install` option does - `make install` would install a binary without the debug rpath, just like without options at all. The expected dra