libelf: vendor as full-fork recipe (path=source, patches baked)

This commit is contained in:
2026-08-01 04:43:38 +03:00
parent cca1a820f0
commit 3acd6f389f
1546 changed files with 357991 additions and 1 deletions
@@ -0,0 +1,12 @@
// gcc -g -O2 -o implicit_pointer implicit_pointer.c
static __attribute__((noinline, noclone)) int foo (int i)
{
int *p = &i;
return *p;
}
int main (void)
{
return foo (23) - 23;
}