From: Khem Raj
We install the gcc libraries (such as crtbegin.p) into
//5.2.0/
which is a default search path for GCC (aka multi_suffix in the
code below). is 'machine' in gcc's terminology. We use
these directories so that multiple gcc versions could in theory
co-exist on target.
We only want
From: Khem Raj
When -fstack-protector options are enabled we need to
link with ssp_shared on musl since it does not provide
the __stack_chk_fail_local() so essentially it provides
libssp but not libssp_nonshared something like
TARGET_LIBC_PROVIDES_SSP_BUT_NOT_SSP_NONSHARED
where-as for glibc the