Re: [PATCH] use -rpath option

2020-03-24 Thread John Cowan
Again, amazing. Does this mean that Chicken *output* can also be built with tcc? Now that the compiler is modularized, that would give Chicken a dynamic compiler. On Tue, Mar 24, 2020 at 9:03 AM wrote: > felix.winkelm...@bevuta.com wrote: > > This patch replaces the use of the "-R" linker

Re: [PATCH] use -rpath option

2020-03-24 Thread kooda
felix.winkelm...@bevuta.com wrote: > This patch replaces the use of the "-R" linker option by "-rpath", which > appears to be > more portable (accepted by tcc, for example). According to the GNU ld manual, > -R is > actually a compatibility alias for -rpath, so the latter seems to be more >

[PATCH] use -rpath option

2020-03-12 Thread felix . winkelmann
This patch replaces the use of the "-R" linker option by "-rpath", which appears to be more portable (accepted by tcc, for example). According to the GNU ld manual, -R is actually a compatibility alias for -rpath, so the latter seems to be more canonical. The manual page for Solaris' ld lists