This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: g++ unrecognized option for -R


On May 14, 2001, "Yen Ryan" <kjyen@hotmail.com> wrote:

> i'd like to use shared libraries with -R option

This option is not portable.  It's actually a linker option, that GCC
accepts on a few targets for compatibility with the native compilers
of those platforms.  In general, you should use -Wl,-R to pass the
flag directly to the linker, if the linker supports it.  Sometimes
you'll find the spelling of the flag.  The GNU linker accepts both
-rpath and -R.

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]