Files
kernel/scripts/cc-can-link.sh
T

12 lines
166 B
Bash
Raw Normal View History

2018-06-04 19:53:41 -07:00
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
cat << "END" | $@ -x c - -o /dev/null >/dev/null 2>&1
2018-06-04 19:53:41 -07:00
#include <stdio.h>
int main(void)
{
printf("");
return 0;
}
END