> On 29 Oct, 2017, at 0:06, blubee blubeeme wrote:
>
> I'm compiling a port and the linker is failing because the linker is
> looking for
>
> -lUppercaseSoname
>
> but the shared object name doesn't start with an uppercase.
>
> Can I change the way the linker flags are passed to replace:
> -lS
I'm pretty sure this is the reason the build is failing because running
both these commands:
% ld -L/usr/local/lib -lSoname
ld: cannot find -lTogl
% ld -L/usr/local/lib -lsoname
ld: warning: cannot find entry symbol _start; not setting start address
//lib/libc.so.7: undefined reference to `__progn
I'm compiling a port and the linker is failing because the linker is
looking for
-lUppercaseSoname
but the shared object name doesn't start with an uppercase.
Can I change the way the linker flags are passed to replace:
-lSoname with -lsoname
___
freeb