https://github.com/torvalds/linux
Raw File
Tip revision: 2f4be8b8d7722ff98aa0b100ac9fd81709f3b45b authored by Ofir Weisse on 30 July 2019, 15:32:02 UTC
We now reach ntoskernel.exe (phase 4) of bootloading.
Tip revision: 2f4be8b
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