Mailing List Archive

idea and rsa on OpenBSD
I'm trying to compile the idea and rsa modules under OpenBSD 2.6.
The error I get is:

ld: No reference to __DYNAMIC

Any idea how to get around this?
Re: idea and rsa on OpenBSD [ In reply to ]
Lars Hecking writes:
>
> I'm trying to compile the idea and rsa modules under OpenBSD 2.6.
> The error I get is:
>
> ld: No reference to __DYNAMIC
>
> Any idea how to get around this?

Found the answer on openbsd-misc ...

cc -O2 -fPIC -c idea.c -o idea.o
ld -Bshareable -o idea idea.o

I did know about -Bshareable, but must have mucked it up elsewhere ...