xref: /linux/scripts/cc-can-link.sh (revision 83bd89291f5cc866f60d32c34e268896c7ba8a3d)
1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0
3
4cat << "END" | $@ -Werror -Wl,--fatal-warnings -x c - -o /dev/null >/dev/null 2>&1
5#include <stdio.h>
6int main(void)
7{
8	printf("");
9	return 0;
10}
11END
12