Re: [PATCH] s390: vdso: Use $(LD) instead of $(CC) to link vDSO

2020-06-02 Thread Nick Desaulniers
On Wed, May 27, 2020 at 11:06 PM Nathan Chancellor wrote: > > Currently, the VDSO is being linked through $(CC). This does not match > how the rest of the kernel links objects, which is through the $(LD) > variable. > > When clang is built in a default configuration, it first attempts to use >

[PATCH] s390: vdso: Use $(LD) instead of $(CC) to link vDSO

2020-05-28 Thread Nathan Chancellor
Currently, the VDSO is being linked through $(CC). This does not match how the rest of the kernel links objects, which is through the $(LD) variable. When clang is built in a default configuration, it first attempts to use the target triple's default linker, which is just ld. However, the user