Stephen J. Turnbull writes:
>>>>> "KY" == Katsumi Yamaoka
<yamaoka(a)jpl.org> writes:
usage: ld [-abd:e:f:h:il:mo:rstu:z:B:D:F:GI:L:M:N:Q:R:S:VY:] file(s)
;
;
[-z combreloc] combine multiple relocation sections
KY> And then, configure adds `-z nocombreloc' to $ld_switch_site
KY> even if there is no such a option. :-<
Good, the configure test is working as intended. I was worried about
that.
The problem is easy enough to fix. For GNU ld, the nocombreloc option
is explicitly listed, and I'll check for that instead. You can work
around by either hacking configure or by using --pdump.
Does your linker support turning those -z options off in another way?
The solaris 2.7 ld I have here supports -z combreloc, but not -z
nocombreloc, and lists only -z combreloc in the usage message you get
when it bitches about not understanding --help. Testing for
nocombreloc should work.
Robert
--