Thank you. That is right.
Regards,
Mahmood



On Mon, Apr 27, 2020 at 6:28 PM Andrei Belov <[email protected]> wrote:

>
> > On 27 Apr 2020, at 16:53, Mahmood Naderan <[email protected]> wrote:
> >
> > Hi,
> > I want to add '--emit-relocs' at the linker stage while building nginx,
> I have edited the objs/Makefile to be like this:
> >
> >         $(LINK) -o objs/nginx \
> >         objs/src/core/nginx.o \
> >          ....
> >         objs/ngx_modules.o \
> >         -ldl -lpthread -lcrypt -lpcre -lz --emit-relocs \
> >         -Wl,-E
> >
> >
> > However, I get this error
> >
> > cc: error: unrecognized command line option '--emit-relocs'
> >
> > Any idea to fix that?
>
> As it is linker option, you should use -Wl,--emit-relocs instead.
>
> Also, the better way is to specify linker options via "--with-ld-opt"
> nginx configure option, e.g.:
>
> ./configure --with-ld-opt="-Wl,--emit-relocs"
>
>
> HTH,
>
> -- Andrei
> _______________________________________________
> nginx mailing list
> [email protected]
> http://mailman.nginx.org/mailman/listinfo/nginx
>
_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to