summaryrefslogtreecommitdiff
path: root/scripts/cc-can-link.sh
blob: 58dc7dd6d55689a8142ce50687fce4ba4c2d55d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0

cat << "END" | $@ -Werror -Wl,--fatal-warnings -x c - -o /dev/null >/dev/null 2>&1
#include <stdio.h>
int main(void)
{
	printf("\n");
	return 0;
}
END