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

1
2
3
4
5
6
7
8
// RUN: %clang -target armv8 -mcrc -### %s 2> %t
// RUN: FileCheck --check-prefix=CHECK-V8-CRC < %t %s
// CHECK-V8-CRC: "-target-feature" "+crc"

// RUN: %clang -target armv8 -mnocrc -### %s 2> %t
// RUN: FileCheck --check-prefix=CHECK-V8-NOCRC < %t %s
// CHECK-V8-NOCRC: "-target-feature" "-crc"