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-interpreter %s | FileCheck %s
// REQUIRES: native, examples

int printf(const char *, ...);

int main() {
  // CHECK: {{Hello world!}}
  printf("Hello world!\n");
  return 0;
}