summaryrefslogtreecommitdiff
path: root/scripts/cc-can-link.sh
blob: e67fd8d7b6841e53341045b28dc5196cc1327cbe (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("");
	return 0;
}
END