Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

// clang -c -g -o dwarfdump-test-32bit.elf.o -m32 dwarfdump-test-32bit.elf.c

extern int glob;

int foo(int arg) {
  int a = arg * 2;
  return a + glob;
}

int bar(int arg) {
  int a = foo(arg) * foo(arg * 2);
  return glob - foo(a);
}