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

// RUN: %clang_cc1 %s -emit-llvm -o -

int main () {
  struct foo {
    unsigned a:16;
    unsigned b:32 __attribute__ ((packed));
  } x;
  x.b = 0x56789abcL;
  return 0;
}