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

#!/bin/sh
# $NetBSD: prepare-import.sh,v 1.6 2018/12/29 16:27:12 kamil Exp $
#
# Checkout compiler_rt into dist.
# Run this script and check for additional files and directories to prune,
# only relevant content should be included.

set -e

cd dist
rm -rf .svn
rm -rf SDKs android cmake make third_party unittests www
rm -f .arcconfig .gitignore CMakeLists.txt Makefile
rm -rf lib/BlocksRuntime lib/dfsan lib/cfi
rm -rf  lib/builtins/Darwin-excludes lib/builtins/macho_embedded
rm -rf test/BlocksRuntime test/asan test/cfi test/dfsan test/lit.* test/lsan
rm -rf test/msan test/sanitizer_common test/safestack test/tsan test/ubsan
rm -f lib/*/*/Makefile.mk lib/*/Makefile.mk */Makefile.mk
rm -f lib/*/CMakeLists.txt */CMakeLists.txt
rm -f lib/builtins/apple_versioning.c lib/lit.common.*
cd ..
find dist -type d -delete 2> /dev/null