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

// Test that NDEBUG works
#undef NDEBUG
#include <cassert>
#define NDEBUG
#include <cassert>
int
main()
{
	assert(this code is not compiled);
}

#ifndef _LIBCPP_VERSION
#error "Modules currently requires libc++"
#endif