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