On Sun, Apr 16, 2023 at 1:07 PM Rahul Sabnis via curl-library
<[email protected]> wrote:
>
>  ...
> Configure command output below. Added few other parameters as can be seen 
> below:
>   Host setup:       x86_64-pc-linux-gnu
>   Install prefix:   /home/builder/curl
>   Compiler:         gcc -std=gnu11
>    CFLAGS:          -fPIC -Werror-implicit-function-declaration -O2 
> -Wno-system-headers
>    CPPFLAGS:        -Dlinux26 -isystem /home/builder/openssl/include/openssl 
> -DOPENSSL_NO_DEPRECATED_3_0
>    LDFLAGS:         -Wl,-R/home/builder/openssl/lib64 
> -L/home/builder/openssl/lib64
>    LIBS:            -lssl -lcrypto -ldl

Off-topic, you generally want to use new-dtags with an RPATH:

    -Wl,-R,/home/builder/openssl/lib64 -Wl,--enable-new-dtags

new-dtags sets the RUNPATH, and it allows LD_LIBRARY_PATH overrides.
Without it, you set the RPATH, and it does not allow the overrides.

Jeff
-- 
Unsubscribe: https://lists.haxx.se/mailman/listinfo/curl-library
Etiquette:   https://curl.se/mail/etiquette.html

Reply via email to