https://github.com/torvalds/linux
Raw File
Tip revision: 418baf2c28f3473039f2f7377760bd8f6897ae18 authored by Linus Torvalds on 22 November 2020, 23:36:08 UTC
Linux 5.10-rc5
Tip revision: 418baf2
cc-can-link.sh
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0

cat << "END" | $@ -x c - -o /dev/null >/dev/null 2>&1
#include <stdio.h>
int main(void)
{
	printf("");
	return 0;
}
END
back to top