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

struct B;

struct A {
  static B b;
};

struct B {
  A a;
};

B A::b;
B b;

int main(int,char **)
{
  return 0;
}