For convenience I added the relevant manpages below.

My (mis)understanding first: If I need to separate options with ',', that means that the second '-Wl' is not another option because it comes before ',' which means it is an argument to the '-rpath' option.

I don't understand how '-rpath' can have a '-Wl,.' argument!

What would make sense in my mind would be this:

-Wl,-rpath .

This should invoke -rpath linker option with the current directory argument.


man gcc:

-Wl,option

Pass option as an option to the linker. If option contains commas, it is split into multiple options at the commas. You can use this syntax to pass an argument to the option. For example, -Wl,-Map,output.map' passes -Map output.map' to the linker. When u> sing the GNU linker, you can also get the same effect with `-Wl,-Map=output.map'.

man ld:

-rpath dir

Add a directory to the runtime library search path. This is used when linking an ELF executable with shared objects. All -rpath arguments are concatenated and passed to the runtime linker, which uses them to locate shared objects at runtime. The -rpath option is also used when locating shared objects which are needed by shared objects explicitly included in the link;

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

The -Wl,xxx option for gcc passes a comma-separated list of tokens as a space-separated list of arguments to the linker. So

gcc -Wl,aaa,bbb,ccc

eventually becomes a linker call

ld aaa bbb ccc

In your case, you want to say "ld -rpath .", so you pass this to gcc as -Wl,-rpath,. Alternatively, you can specify repeat instances of -Wl:

gcc -Wl,aaa, -Wl,bbb -Wl,ccc

Or, in your case, -Wl,-rpath -Wl,..

link|improve this answer
Oh I understand now, there is no discrimination between option or argument while passing stuff to the linker, it's just a string. So the second -Wl is redundant! Thanks :) – Blub Jul 3 '11 at 10:55
1  
@Blub: It's not redundant! It's an alternative form, you either say -Wl,-rpath,. or you say -Wl,-rpath -Wl,.. Precisely one of the two, you cannot omit anything. – Kerrek SB Jul 3 '11 at 10:58
feedback

These arguments

-Wl,-rpath .

do NOT make sense to my mind. How is gcc supposed to know that your second argument (.) is supposed to be passed to the linker? The only way it would be able to know that is if it had insider knowledge of all possible linker arguments so it knew that -rpath required an argument after it.

The man page makes it pretty clear. If you want to pass two arguments (-rpath and .) to the linker you can write

-Wl,-rpath,.

or alternatively

-Wl,-rpath -Wl,.
link|improve this answer
it is not unthinkable that the gcc analyses arguments and if something doesn't make sense, it automatically groups. – Blub Jul 3 '11 at 10:59
1  
Actually, it is – Antoine Pelisse Mar 8 at 14:37
feedback

One other thing. You may need to specify the -L option as well - eg

-Wl,-rpath,/path/to/foo -L/path/to/foo -lbaz

or you may end up with an error like

ld: cannot find -lbaz
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.