The open source OpenXR runtime
1#!/bin/sh
2# Copyright 2022, Collabora, Ltd.
3# SPDX-License-Identifier: BSL-1.0
4
5(
6 set -e
7 cd "$(dirname $0)" && cd ..
8 extra_args=""
9 for fn in /usr/share/include-what-you-use/iwyu.gcc.imp /usr/share/include-what-you-use/*intrinsics.imp /usr/share/include-what-you-use/libcxx*.imp; do
10 extra_args="${extra_args} -Xiwyu --mapping_file=$fn"
11 done
12 iwyu_tool -p build src/xrt/ "$@" -- -Xiwyu "--mapping_file=$(pwd)/scripts/mapping.imp" ${extra_args} | tee iwyu.txt
13)