Fix build with static-pie but without nptl threads
since ffd84a0f6 the `_dl_load_base` variable is defined in the nptl code
and as such its existance is now gated behind UCLIBC_HAS_THREADS_NATIVE.
When building without that config (e.g. allnoconfig) an unresolved symbol
linking error occurs. Add a check to the static pie code reponsible for
setting that variable to only attempt to initialize it if nessecary.
Fixes: ffd84a0f6 ("static pie: fix building static PDE")
Signed-off-by: Charles Mirabile <cmirabil@redhat.com>