Reputation: 33
I'm getting an error with a lld link, ld is ok.
clang -fuse-ld=lld -fsplit-stack -fpatchable-function-entry=1 t.c
#include <stdio.h>
int main()
{
int a;
scanf("%d", &a);
printf("%d\n", a);
}
Is -fsplit-stack and -fpatchable-function-entry=1 incompatibility?
ld is ok, Is -fsplit-stack and -fpatchable-function-entry and lld incompatibility?
Upvotes: 0
Views: 13